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

Software Development Network >> Visual C++

Visual C++

New Question

LNK2019 - I have already linked the libraries!
ifstream 's mistake in vc8, correct in vc7.1
excpt.h error
Unhandled C++ exceptions and Doc Watson
Restarting computer.
Prevent linking MSVCR80.dll
executing windows commands from vc++(eg: net user)
GetDC function
Error LNK2001: unresolved external symbol "__declspec(dllimport) public: class CString __thiscall
gSOAP and TIME_WAIT on windows 2000 SP4

Top Answerers

gue22
Melbert
GGiant
nateastle
Visual B
vsnewbie
Erik Meisel
Matt_FL
jasin14
NT
Kelly, Jimi
Only Title

Answer Questions

  • Sydelis std::_Mismatch deprecated. Replacement?

    Converting a very large code base and this line of code generates the deprecationg warning: pair<T,T> rc = mismatch(first1, last1, first2, pred); c:\program files\microsoft visual studio 8\vc\include\xutility(2586) : warning C4996: 'std::_Mismatch' was declared deprecated c:\program files\microsoft visual studio 8\vc\include\xutility(2570) : see declaration of 'std::_Mismatch' Message: 'You have used a std:: construct that is n ...Show All

  • waddies Can Visual Studio 2003 and 2005 co-exist?

    Can Visual Studio 2003 and Visual Studio 2005 co-exist on the same machine (for one project we are depended on libs from Oracle, and they are not compatilble with 2005). To develop in .NET 1.1 Framework you need VS2003! There is no way arround it! Is there a way to interrupt the VS2005 from automatically popping up on the " Double click of a C++ file" Can multiple system path sign-on files be used in any way ...Show All

  • Kevin Downs how to let visual studio not to find certain dll?

    hi i can compile my program, but i can not run it, because it will popup an error message saying the system couldn't find dkcert.dll. I've removed a software which provides the dkcert.dll, because i want my program not to link to the dkcert.dll, but to ep2pk11.dll which i put in the same folder as my source code. but it seems visual studio will always keep searching for the dkcert.dll instead. i've uninstall and reinstall visual studio a couple ...Show All

  • katykaty Microsoft COM Components on 64 bit ?

    I tried to port my application over to 64 bit. I was unable to port the code that used the standard Microsoft Data Grid Control (6.0) or any other microsoft COM component while running on 64 bit. I did not get any compiler errors, just at run time i got the Debug Assert Error... Can we not use any of the MS COM Components for developing apps on 64 bit Thanks OK, so I heard back from the VB team and this is what they said.  "Yes ...Show All

  • Patel Mayur Visual C ++ Runtime Library, Abnormal Program Termination

    I have had some issues with this for some time until I managed to locate a few examples in the knowledge base. My problem was that on boot up I received the Abnormal Program Termination with a program link attached. The string ended in {setup\hpzrcv01.exe I remembered viewing a comment from one individual who mentioned to uninstall any recently installed software. Well in my case it was a Hewlett Packard Printer.I had deleted the printer, so I t ...Show All

  • mdyoung Retriving a key pressed in a different Application

    <Gal Beniamini@discussions.microsoft.com> wrote in message news:d1c96286-5525-41a4-9d28-579d9d7d3011@discussions.microsoft.com > Hello, I have a question; how is it possible to get the event of a > key pressed in a different application while my application is > running in the background and to then identify which key it was You need to install a system-wide hook - see SetWindowsHookEx -- With ...Show All

  • Chenxia lag?

    hello, ive been having wierd problems with my express version of VC++. i experience lag when i type. such as when im just working on apps, and ill compile, to see if there are any errors so i can move on. but after a few of these compiles the software becomes laggy. ill type but it wont show up. the program acts as if the text is there, but it doesnt show on the screen. any help on this issue would be greatly appreciated, because this ...Show All

  • Jarno Burger Directx missing file problem

    Hi folks, Sorry if this has already been put up. I'm getting far too annoyed by this. I'm trying to get started with 2D graphics programming in Directx, and I'm trying to work with the samples in the June SDK. Absolutely nothing will compile. These tutorial projects all come up with the following error: ------ Build started: Project: CreateDevice, Configuration: Debug Win32 ------ Compiling... CreateDevice.cpp c:\program files\microsoft dir ...Show All

  • Andreas Andersson C2061 Compiler error

    Hi. I got error message when I try to build my project "d:\Documents and Settings\Phoenix\ \My_app\autonapominalka\main.cpp(164): error C2061: syntax error : identifier 'form1'" Code sample: //-------------------------- Form * form1 = new error; //some code form1->Controls->Add(listbox);// error shows on this string form1->Show(); //----------------------------- So, I have declaration but Visual C++ thinks that form1 is undecl ...Show All

  • Paul Randal ComboBox AddString()

    I used the vc++ resource manager to create a combo box on the program's main form. I would like to use AddString() at run time to fill the combo box with a list of valid selections. But, the AddString() function requires a (CComboBox*). The resource manager created the combo box, but never told me the name of the variable, only the name of the ID (in this case, the ID is IDC_VAR_NAME). How do you make the connection from ID to (CComboBox*) ...Show All

  • Shawn Anderson 020564 errors while executing vc++ code

    Hi I have one opensource of vc++. While executing this code it is giving the following errors. 1)error C2433: 'HWND' : 'inline' not permitted on data declarations 2)error C2143: syntax error : missing ';' before '{' 3)error C2447: '{' : missing function header (old-style formal list ) 4)error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 5)error C2086: 'int CALLBACK' : redefinition If any one got these erro ...Show All

  • PGolini How can a window in a dialog receive keyboard message?

    How can a window in a dialog receive keyboard message I create a window in a dialog.This window can show 3D drawing including rotation and can receive mouse message,but it can not receive keyboard message. Please tell me why,Thank you for your answer.My code for create window is as follow.Maybe it need more parameter. My program for create window is as follow: R2=CRect(200, 600, 1000, 800); // TODO: Add extra initialization here m_pDisplay1- ...Show All

  • Federico Masi Using classes from dynamically linked DLL

    I am attempting to use classes that are defined in my custom written DLLs. I am dynamically loading the DLLs using LoadLibrary. I already know how to access functions using GetProcAddress. Is it possible to do something similar for classes At this point, I'd use COM. What this thread is describing is pretty much what a basic COM object is: 4 exported functions, all standard, and a class that implements the IU ...Show All

  • foxxjnm What API required to access HTML tag of a chm file in MFC program????

    Hello, I like to write an MFC program that will have to check the value of an html tag (<meta>) in a chm file. So I like to know what MFC class and method is required to use to have my program access the html tag value of a chm file Any idea pls Thanks. http://msdn.microsoft.com/library/default.asp url=/library/en-us/htmlhelp/html/vsconhh1start.asp http://msdn.microsoft.com/library/def ...Show All

  • Rick B. VS .Net 2005, how to disable intellisense...

    Hi I am really frustrated with the performance of VS .Net 2005. This is because I always see at the bottom "updating intellisense..." and it uses 60% to 70% of CPU. How to disable this updating of intellisense... Please this is making Visual studio unusable. Thanks Chandra I just want to join the chorus. The intellisense update is making my C++ project (hundreds of files, many hundreds of classes) unusable. P ...Show All

363738394041424344454647484950515253

©2008 Software Development Network

powered by phorum