Beginning with VC++
-
I am a beginer with VC++. I write a class in VC++ but I don't know where is the program started (as main() in C language). Can you help me. Thank you.
-
I am a beginer with VC++. I write a class in VC++ but I don't know where is the program started (as main() in C language). Can you help me. Thank you.
-
I am a beginer with VC++. I write a class in VC++ but I don't know where is the program started (as main() in C language). Can you help me. Thank you.
-
I am a beginer with VC++. I write a class in VC++ but I don't know where is the program started (as main() in C language). Can you help me. Thank you.
Hi Nguyen How r you? Well you want to code a win32 app. I remember how difficult it was in the beginning to understand everything win32 offers. it was way back to 1 year that i started out my win32 journey with a simple tutorial at http://www.softlookup.com/tutorial/vc++/vcu08fi.asp[^] well here is a prototype of winmain
int WINAPI WinMain(HINSTANCE d1, HINSTANCE d2, LPSTR d3, int d4) { code..... return 0; }
۞It is on our failures that we base a new and different and better success.
-
Hi Nguyen How r you? Well you want to code a win32 app. I remember how difficult it was in the beginning to understand everything win32 offers. it was way back to 1 year that i started out my win32 journey with a simple tutorial at http://www.softlookup.com/tutorial/vc++/vcu08fi.asp[^] well here is a prototype of winmain
int WINAPI WinMain(HINSTANCE d1, HINSTANCE d2, LPSTR d3, int d4) { code..... return 0; }
۞It is on our failures that we base a new and different and better success.
:laugh::laugh::laugh: I guarantee that you have no idea yet! But I also guarantee that you are trying to head in the right direction. Unless you think MFC is pure C++, in which case you need to study both. INTP Every thing is relative...
-
I am a beginer with VC++. I write a class in VC++ but I don't know where is the program started (as main() in C language). Can you help me. Thank you.
The main function (routine/method/what ever...) is the entery point in both C and C++. It is when we need to run it in an eniroment like Windows, Lenux, or Apple (Macintosh) that we have problems. Until you understand the basics, stick to console programes. That is programes that require a main() routine. INTP Every thing is relative...
-
I am a beginer with VC++. I write a class in VC++ but I don't know where is the program started (as main() in C language). Can you help me. Thank you.
Nguyen Thi Thanh wrote:
Can you help me. Thank you.
this section of codeproject is full of beginner tutorial.. i believe it will help... just follow this link http://www.codeproject.com/cpp[^]
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV
-
:laugh::laugh::laugh: I guarantee that you have no idea yet! But I also guarantee that you are trying to head in the right direction. Unless you think MFC is pure C++, in which case you need to study both. INTP Every thing is relative...
hi Shaw I know MFC is simply a wrapper for WIN32 API. if i want to code win32 app. i have to learn pure win32 coding without any choice.
۞It is on our failures that we base a new and different and better success.