Im new to C++ computer programming and wondered how to create a simple program that just displays some text and maybe a link. Just like a (warning) pop up you get but bigger.
Can anyone help me on this?
Please post the code for it or give a link
Im using Microsoft Visual C++ 2005 Express Edition
How do I create this?
you want to create a message box. try this code:
#include %26lt;windows.h%26gt;
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
MessageBox (NULL, "Hello World" , "Hello", 0);
return 0;
}
Reply:http://www.good-tutorials.com/
http://www.digitaljuice.com/
http://www.tutorialkit.com/
http://www.codestyles.com/
http://www.sitecube.com/website/promo_bw...
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment