|
First
|
Prev |
Next
|
Last
Pages: 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
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
VC form feed I am using Visual C++ Express. Is there a way to insert a form feed for printing? Thanks, gtb ... 1 Apr 2008 01:39
Help:- Develop Remote Software Installation Utility Hi I need to design a tool that can install software on remote client machine. Basically i need Deploy MSI, EXE, BAT etc. on various client machines with user interaction. There are lots of tool on net that provide these features but i need to develop such type of utility. Thanks & Regards Sachin ... 31 Mar 2008 06:49 |