Programming is a very interesting thing. If you like it, You will never be bored ! For those who program, I am going to post a something different code.
This is a very simple code, which will display the message box on screen. It can be used to alert user, if he enters wrong data or can be used to display notification while executing the program.
Take a look on actual program:
This is a very simple code, which will display the message box on screen. It can be used to alert user, if he enters wrong data or can be used to display notification while executing the program.
Take a look on actual program:
#include
#include
#include
int _stdcall WinMain ( HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpszCmdline, int nCmdShow )
{
MessageBox ( 0,"Visit our site : bybitz.blogspot.com !", "Hi Friend..", 0 ) ;
return ( 0 ) ;
}
#include
#include
int _stdcall WinMain ( HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpszCmdline, int nCmdShow )
{
MessageBox ( 0,"Visit our site : bybitz.blogspot.com !", "Hi Friend..", 0 ) ;
return ( 0 ) ;
}
- See more at: http://bybitz.blogspot.com/2013/02/create-message-box-using-c-programming.html#sthash.yDkpAsJp.dpuf
0 comments:
Post a Comment