I have problem with CStatic. So I have this: CStatic * lblPresent; SetWindowPos(NULL,GetSystemMetrics(SM_CXSCREEN)/2-234,0,0,0,SWP_NOSIZE | SWP_NOZORDER);
I made a C program to get an image offline and save it in a file using fopen/fread/fwrite and libcurl. Everything compiles perfectly fine and I can run it perfectly fine by double clicking the program
I am trying to allocate a two dimensional array dynamically and then after use, delete it. The code looks somethi开发者_如何学Pythonng like this:
At first some introductions: I am currently working on a C++ compatibility thing which means being able to run projects with different compiler options with each other. Therefore I test wi开发者_如何学
I\'m getting this error about 2 out of 3 times when closing my application running on XP SP3. I have not been able to repro on Win 7. Any insight on what may cause such an error would be appreciated.
I\'m attempting to adapt a piece of code to take the FFT of some input data.Everything goes fine taking the transform.My problem occurs when I try to write the transform to a binary file at which poin
I\'m currently developing a program that reads strings from a text file in 8-bit ASCII mode, and I make a function to assign that string into a wchar_t*
I know there are quite a few questions concerning access violations, but I have read a lot and still can\'t seem to crack this one. I\'m translating this code from java to c++ and am far less experien
I have a WPF application that is crashing on some computers with an AccessViolationException when a drag operation is started.
I am new to C++, and I am trying to program a replica of Pong using freeglut with Visual Studio 2010. My code was working fine until I made some revisions to it in order to make it more object oriente