English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

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

2006-12-27 07:40:16 · 2 answers · asked by sbraidley 3 in Computers & Internet Programming & Design

2 answers

you want to create a message box. try this code:

#include

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
MessageBox (NULL, "Hello World" , "Hello", 0);
return 0;
}

2006-12-27 08:08:12 · answer #1 · answered by Michael JB 3 · 0 0

http://www.good-tutorials.com/
http://www.digitaljuice.com/
http://www.tutorialkit.com/
http://www.codestyles.com/
http://www.sitecube.com/website/promo_bw.asp?pid=sitetarget

2006-12-27 16:25:44 · answer #2 · answered by george r. n. 5 · 0 0

fedest.com, questions and answers