|
First
|
Prev |
Next
|
Last
Pages: 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
There is no build command line to execute. I am trying to use VS2005 to write unmanaged c++. The options seem to be a General 'Empty' or 'makefile' project, however neither seems to build what is required to build a command line project. I appreciate any suggestions. Harry ... 16 Oct 2006 10:14
threading question C# has a easy way of waking another thread (Thread.Interupt). Does C++ /MFC have a nice way of checking the status of another thread and if it is sleeping, to wake it? thanks! ... 6 Oct 2006 17:09
ADO Connection - "Class Not Registered" I am getting a "Class not Registered" error when I try to create a Connection object. I am importing the msado15.dll, I have the lastest sp for sqlserver 2000 but I still get the error. the following is a snippet #import "c:\program files\common files\system\ado\msado15.dll" no_namespace rename("EOF","End... 6 Oct 2006 12:24
Unable to start program (code 0x8007007e) - Windows Mobile 5.0 Emu > I hope I am in the correct newsgroup. I have the following error message from Visual Studio when launching my application with Visaul Studio 2005 : "Unable to start program '%CSIDL_PROGRAM_FILES%\MyApp\MyApp.exe'. An error occured that usually indicates a corrupt installation (code 0x8007007e). If t... 5 Oct 2006 10:40
Unable to start program (code 0x8007007e) - Windows Mobile 5.0 Emulator Hi folks, I hope I am in the correct newsgroup. I have the following error message from Visual Studio when launching my application with Visaul Studio 2005 : "Unable to start program '%CSIDL_PROGRAM_FILES%\MyApp\MyApp.exe'. An error occured that usually indicates a corrupt installation (code 0x8007007e). If ... 4 Oct 2006 13:09
Programmatically getting the call stack Hey all, For debugging/profiling purposes, I would like to get the current call stack from the system. Apparently, that can be done with Visual C++ by using the StackWalk64 method in the dbghelp.h, as described here: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/debug/base/stackwalk64.asp ... 4 Oct 2006 02:06
error MFC80UD.dll not found when running in debug mode Ankur wrote: When I try to compile and run a MFC program in MSVS 2005 in debug mode, i get the following error MFC80UD.dll not found. Pls Reinstall the program. Why I am getting this error and how do i correct it. Thnx in advance check whether you have unicode support. because the MFCxxUD.dll's are me... 4 Oct 2006 03:09
Getting permissions info for a user Hi all! Hoping that someone might be able to give me a hint or two here. I'm trying to check that the current user has permission to write to or delete a file on disk. Using pretty bare C++, no COM etc. I've looked everywhere for an example, but just couldn't find anything. So in the end I hacked something toget... 1 Oct 2006 22:25
function in DLL Hi, I'm still working on my DLL and is function to extract strings from the stringtable stored in the DLL. it looks like that : // -- mydll.cpp extern "C" __declspec(dllexport) LPTSTR GetString(int Index) { TCHAR res[2048]; ::LoadString(GetModuleHandle(NULL),Index, res, sizeof(res)/sizeof(TCHAR)); L... 2 Oct 2006 11:26
how to get function name in DLL Hi, How can i get the function exposed in a DLL ? what is the command ? can i get also their parameters and return type ? thx, Alain ... 30 Sep 2006 17:23 |