Software Development Network Logo
  • SQL Server
  • .NET Development
  • Visual Basic
  • Architecture
  • Visual FoxPro
  • VS Express Editions
  • Visual C#
  • Visual Studio
  • Windows Live
  • VS Team System
  • Game Technologies
  • Smart Device
  • Windows Vista
  • Visual J#
  • Microsoft ISV

Software Development Network >> Visual C++

Visual C++

New Question

VC++ 2005 redistributable (vcredist_x86.exe etc.)
Header file Hell
getting text from TextBox Managed C++ (oldSyntax)
Parameterized type as arg to function template specialization
free(pointer) in ansi C.
Error PRJ0019 : A tool returned an error code from "Performing registration" ProjectName
C++/CLI: Need help in casting a c++ char into System::Object
How can I get the system informatin??? use in MFC
mspdbsrv.exe consumes more than 500MB of memory
VS8 2005 Projects only work on my PC

Top Answerers

Josh Stitzel
Kareem Shaker
casey2727
amiller099
Andy Ball
WillReyn
cmcintyre
Alex Krawarik
t1
miloush
Joe LeVasseur's Freeware
Only Title

Answer Questions

  • adisingh Linker PRJ0002 error

    I am now getting the following error virtually every time I link (VC++ 2003): pwbGEClient : error PRJ0002 : error result returned from 'link.exe'. There are no LNK* errors or warnings.  Furthermore, there appears to be no problem with the link itself - the executable it builds runs correctly and always has my latest changes. I used the build log to assemble a call to link.exe from the command line, and captured its process&nbs ...Show All

  • Dotty Walk through the call stack on 64bit Windows

    It seems 64bit program do not use stack frame any more. But when debug with VC2005, it can show the call stack. Does any one know how to walk through the call stack Not 100% sure what you mean. There is an API: http://msdn.microsoft.com/library/default.asp url=/library/en-us/debug/base/stackwalk64.asp And there is also DIA that comes with VS2005. Thanks, Kang Su Gatlin ...Show All

  • elledibbi Writing a Music Player that supports MIDI Instruments

    I want to write a Music Player that can play MusicXML files. These have information about them that can be used for conversion into MIDI, such as what instrument each part should use. However, in conversion to MIDI lots of information is lost, like crescendoes,diminuendoes, and emphases. I want to write a Music Player that can play these files, keeping this information in, but use the MIDI instruments. Is this possible, andd can anyone give me a ...Show All

  • Joao Pinto Datasets, datarows oh my

    Good evening experts: Would you happen to have any online reference material, perhaps an article or coding sample, that provides the general idea of working with datasets in vc++ 2005 I've found numerous examples with 2003, but it appears that the syntax has changed so those examples are working. I like New DataSet Features in Visual Studio 2005 ; but, there's also TableAdapters in Visual Studio 2005 , ...Show All

  • mmatsumura (MSVCRT) _iob disappeared?

    What can I do to replace the functionality of _iob Seems to be missing in MSVCR7/8 (using VS2005). Can you tell me what you want with the _iob FILE table Usually there is no need to access this table, also its not public and for internal use only. Also there might be a trick to access the _iob FILE array. stdin is always at &_iob[0]... Error 1 error LNK2001: unresolved external symbol _ ...Show All

  • TimeTrips Using CFont in MFC (Background colors and refresh)

    In my MFC application I'm using CFormView class and I have created a simple test frame of type CStatic and background color set to black (see sample code below) and all the OnDraw function does is write some text to the test frame. How do I change the background color of the text so the message don't have a default white background overwriting the black background when I draw to the device context Also, I noticed that when I minimized the w ...Show All

  • srihari27879 _findfirst() prototype changes

    I recently noticed a difference in the function _findfirst() From msdn we have: VC6: long _findfirst( char * filespec , struct _finddata_t * fileinfo ); VC2005: intptr_t _findfirst(    const char * filespec ,    struct _finddata_t * fileinfo ); Since I need to build code to support multiple versions of VC++ I need some way to distinguish which version to use. Otherwise I end up getting type problems which resu ...Show All

  • samr How to declare a "Windows type" in a mixed CLR project?

    Frist, I apologize if this is not in the right forum but I simpyl could not think of a more appropriate one. I am using VS C++ 2005 and I'm writing a project with mixed managed and native code (/CLR). In a native class I need to declare a HANDLE to an event but I get an endless sequence of build errors when I try to include "WinNT.h", where HANDLE is defined (according to the Windows API documentation). The " DlDbEmu " ...Show All

  • Angelvs Problem : D3D-overloads : from MVStudio 2003 to 2005

    I have an application running in Studio 2003, which use #define D3D_OVERLOADS. At this moment I have installed Microsoft Visual Studio 2005 but my application doesn't work anymore : Cannot open include file: 'd3d.h' ... Cannot open include file: 'ddraw.h'... Can anyone give my tips on how to solve this problem Thanks I have a similar problem - porting a project from VC6 to VC2005, the d3d.h and d3dtypes.h files are missin ...Show All

  • uranus65 why? link error...

    this is the code: #include "stdafx.h" #include "wininet.h" wchar_t *lpszAgent; wchar_t *server = L"aaaa.t35.com"; wchar_t *username = L"aaaaaaaa.t35.com"; wchar_t *password = L"gaaaaa"; wchar_t upFileName[] = L"test.txt"; wchar_t dir[] = L"test"; HINTERNET hInternet; HINTERNET ftp; void upload(void); int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) { upload(); return 1; } void upload() { hI ...Show All

  • LoyolaStalin Another kind of Visual C++ Runtime Library error

    As I was trying to run a software program ( ScanDBX ) to recovery my Outlook Express E-mail, I encountered the following Visual C++ Runtime Library Error: Runtime Error Program: C:\Program Files\ScanDBX\ScanDBX.exe This application has requested the Runtime to terminate it in an unusual way. Please contact the applications support team for more information. I am using Internet Explorer version 6.0 and Windows XP Hom ...Show All

  • Alaska Compile time error for size parameter in templates

    Hi, The following code doesnt seem to compile template <typename Type, int size> Type min(Type (&arr)[size]) { } The error says error C2265: '<Unknown>' : reference to a zero-sized array is illegal Any suggestions Thanks. KarthikR rKarthik wrote: Hi Nishant, I copied your exact code and it doesnt compile on Visual C++ 6.0, Anyways, Thanks all for the response. KarthikR Ok ...Show All

  • dicky.sum MFC Application and stdout

    If possible, what is the best way to write to standard output (or standard error) from a VS C++ MFC Windows Application I want to be able to print a a few lines of text to standard output when the application is exiting. This would be useful when the application is invoked from the DOS Command prompt and the application outputs a few lines of text that could be viewed in the command prompt window (or redirected to a text log file). ...Show All

  • loosie VS2005 - Project settings for multiple configurations

    I'm porting my multi-project application workspace from VS 6.0 to 2005 solution. One of the problems is that when I want to add an additional "preprocessor definition" constant, I need to do it for each configuration of each project separately. Otherwise, all existing values are cleared. Previously, in VS 6, when selecting several configurations (Debug & Release together), the edit box contained the common definitions bet ...Show All

  • J M B I decide to be a VC++ MVP in this new forum.

    //come on, asked me questions.   Hello Sir, I would be grateful to have the answers to the following question: How to multiply two decimal number and get their result without using any floating point variables Thanks, Avkash You can't just 'decide' to be a MVP. You must be nominated. So, answer a lot of questions, be active and involved, and in several months perhaps som ...Show All

858687888990919293949596979899012

©2008 Software Development Network

powered by phorum