say I have my visual studio set up in
D:\vs\
In my include directory, most of them are set up as:
$(VCInstallDir)include
I want to add another folder of includes that are in:
D:...
Hi everyone ,
I'm doing image processing for the first time and I'm working with VC++ 6.0 under WinXP.
I would like to create a function which loads an 8 bit grayscale bitmap image and conve...
I have a user in the field who is suddenly getting the following error message:
Microsoft Visual C++ Runtime Library
Buffer overrun detected!
Program: c:\windows\system32\DKabcoms.exe
A ...
Hello. I am learning C++ and I am following a series of educational videos + some books. All these
books declare the main function as
void main()
However, when I downloaded and install...
// Thread function
extern uint ThreadTest(LPVOID pParam)
{
uint uExitCode = 2;
return uExitCode;
}
// Main function
CWinThread *pThread = AfxBeginThread(ThreadTest, NULL, THREAD...
I am compiling a SLN in VC8
It compiles all projects without errors..when it reaches the last project I get the following error :;
LINK : fatal error LNK1104: cannot open file 'c:\Docume...
Hi guys,
I would like a decompiler program that should take any .ex4 file and convert it back into .mq4 format. The program should be Windows based running on XP or Vista and will ask for th...
Hi experts,
I am switching our project from Visual Studio 2005 C++ to VS 2008. It compiles almost fine, except...
One of the sources contains the code:
WINDOWINFO wi;
...
Wow, this has been driving me crazy for 2 days now. Please help!
I have written a DLL in C++ VS2008. I simply want to write some debug messages to the output window of the VS IDE which incl...
Hi All
Trying to compile gips library and I am getting these errors..I have tried multi threads and I tried ignoring multiple declarations and MFC shared library all that did not help..can ...
How do I "import" a DLL in C++? That is, how do I take a DLL file and start using it's functions in a C++ project.
Microsoft Visual Studio, 2005.
C++
I am working with an application, and I get a fault in the application log that states: Faulting application (application, version), faulting module msvcr90.dll, version 9.0.30411.0, fault ad...
My 64-bit code needs to call 32-bit DLL code that cannot be recompiled in 64-bit (bought DLL, not the source). I wrote an adapter using ATL/COM out of process server. I am using Visual Studio ...
Hi guys,
I am using a toolbox, but I have some errors:
the first error ( error C2143: syntax error : missing ';' before '*)it is referring to this line
CGridWorldModel *gridworldModel;
...
Hi,
I'm having problems running a C++ console application that was compiled on another machine using Visual Studio 2008. It runs on the machine it was compiled on, but when I try to run it ...
I would like to read in numbers separated by comma in lines in a textfile using C++. Can someone quickly show how I can possibly do it?
Hi,
I'm trying to compile a cpp program with a static library. It seems like some of the lib functions collide with the MFC...
I've tried ignoring the MSVCRTD library but then I get a wh...
Hi everyone,
I'm getting this error message when trying to compile a simple C program using the Microsoft C compiler:
LINK : fatal error LNK1104: cannot open file 'kernel32.lib'
I hav...
Hello,
My main goal is to configure and use the LinBox C++ linear algebra library (www.linalg.org) with VS2005.
It has a huge configure script (unix) so I installed cygwin with the bash sh...
I would like to know if I can change the image or color of a combobox in C++ MFC?
the normal color would be a gray button with a white colored dropdown for the items.
i would like to change ...
I started a Single Doc/View MFC project and then wanted to convert it to UNICODE.
I've done this before and used what worked, however this time it failed with
LINK : fatal error LNK1561...
Hello,
is there any way to watch for changes in an open file on Windows XP using API or MFC? What I mean is this. I open file called readme.txt for reading. Then, another app rewrites it. N...
Hello expert!
I am working for a customer of us, where I am responsible for a server written in C++. The company uses Microsoft Visual Studio 2005. While going through the code to see bette...
Hello all
I'm trying to register my COM server programatically from c++ code using standard c function system (const char*), or alternatively any of the _exec* function family. It works fin...
Can a NamedPipe client written in C# send message to a NamedPipe server written in C++? Please show an example if this is doable. I receive error code 2 when the NamedPipe client tries to co...