First  |  Prev |  Next  |  Last
Pages: 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
OLESTR
Hello everyone, When we use OLESTR to allocate a variable from string literal, like OLESTR("Hello World"), the memory space for the string literal is on stack, right? I can not find official document for this from MSDN. thanks in advance, George ... 4 Apr 2008 10:06
getchar
How would one turn off the buffering so that getchar would return a character immediately without waiting for a carriage return? thanks ... 2 Apr 2008 13:57
CRT (C Runtime Library)
Is that true the CRT (C runtime library) is much low level code compare to the C++ Standard Library? Since I saw the CRT mainipulate byte, floating point, search / sorting. So C++ programmer usually just use the C++ Standard Library instead using the much low level CRT?? It seem to me C++ Standard Library... 3 Apr 2008 05:44
Standard C++ Library
is it true that Standard C++ Library is pretty much include functions similar to the following java packages??? java.io java.lang java.util http://msdn2.microsoft.com/en-us/library/ct1as7hw(VS.80).aspx It seem to me the Standard C++ Library have headers to mainipulate string / characters, doing I/O, and da... 2 Apr 2008 17:53
pass parameter between main thread and working thread
I started a working thread by AfxBeginThread(ThreadProc, GetSafeHwnd()); In the ThreadProc function, I sent a user message ::PostMessage((HWND)pParam, WM_THREADFINISHED, 0, 0) when it is done and a main thread function handles the message. note: WM_THREADFINISHED is user defined message. The probl... 1 Apr 2008 15:40
Writing a .txt file
I generate in a for loop: 1- An array made of random numbers 2- Add the elements of the array and store the result in a number S 3- finally write in a .txt file the number j(number of time that the for-loop has been executed) and the number S for each j like this: j=0 S=x j=1 S=x j=2 S=x Steps 1 and 2 wor... 4 Apr 2008 09:33
auto_ptr array
Hello everyone, I have tried to initialize an auto_ptr array, but failed. My C++ Programming Language book does not contain a sample about how to initialize an auto_ptr array. (not an auto_ptr pointing to an array, which is not legal) Any solutions? [Code] #include <memory> using namespace std; ... 7 Apr 2008 09:52
Simple MAPI Console Application with Outlook Express.
Hi All, I am using Simle MAPI Console Application from Microsoft([url]http://download.microsoft.com/download/mapi/utility/21/w9xnt4/en-us/smplmapi.exe[/url]). It works fine when my default mail client is Outlook, but when my default mail client is outlook express then it shows an error. [MAPIAllocateBuff... 22 Apr 2008 01:33
Error winbase.h wincon.h in Aprq2
Hi I download source of aprq2 (client quake 2) in http://maniac.aq2world.com/apr/aprq2_v1.211-src.zip I Have Microsoft Visual Studio 2005 ( Full ) Well, Using Visual Studio C , I have compiled errors All with two bookshelves (wincon.h and winbase.h). This firts error is c:\archivos de programa\microsoft... 12 Apr 2008 13:28
Want help regarding : "disable bluetooth device"
Hi I want to disable bluetooth device connected to my PC. Can I disble bluetooth radio connected to my PC through code (C++) ? Thanking you Regards Devang Vyas ... 9 Apr 2008 10:30
First  |  Prev |  Next  |  Last
Pages: 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87