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

I'm a Visual Basic/C# programmer and am now trying to transition over to C++a bit. I can really use help tho, see I want to learn how to make a simple message box show in C++. How can I transfer somthing like msgbox("yo") to C++?

Also maybe even changing to another form (vbcode: form2.show)

Any help appreciated

Thanks

2007-08-19 07:39:41 · 3 answers · asked by Jimmy 1 in Computers & Internet Programming & Design

Im using Visual Studio C++ 2005 Professional edition, and the type of project im doing is a CLR Windows Form Application

2007-08-19 08:04:32 · update #1

3 answers

if its CLR u are making;

use this

MessageBox::Show("Hello!");

2007-08-19 08:07:39 · answer #1 · answered by ibrahim ersoy 2 · 0 0

MessageBox(NULL,"yo","Message Form Caption",MB_OK);

2007-08-19 16:47:19 · answer #2 · answered by kunosayu 2 · 0 1

MessageBox(
hWnd,// handle of owner window
"Apple Computers Suck!",
"Alert!",
MB_OK
) ;

2007-08-19 14:46:08 · answer #3 · answered by mdigitale 7 · 2 1

fedest.com, questions and answers