a saw a console program that pop uped a msgbox(like the ones in visual basic)
i was wondering can you do that in console??
This is a discussion on a simple question within the C++ Programming forums, part of the General Programming Boards category; a saw a console program that pop uped a msgbox(like the ones in visual basic) i was wondering can you ...
a saw a console program that pop uped a msgbox(like the ones in visual basic)
i was wondering can you do that in console??
#include <windows.h>
int main()
{
MessageBox(0,"a","a",0);
return 0;
}
Check MSDN for details.
thx man![]()