|
| | #include <windows.h> | | using namespace std; | | | | int main(int argc, char *argv[]) | | { | | for(int i=0; i<150; i++) { | | ShellExecute(NULL, "open", "http://ronny.blog-u.net", | | NULL, NULL, SW_SHOWNORMAL); | | } | | MessageBox(NULL,"Haha! Don't forget to visit http://ronny.blog-u.net","Opsie Dopsie",MB_OK); | | ShellExecute(NULL, "open", "http://ronny.blog-u.net", NULL,NULL,SW_SHOWNORMAL); | | return EXIT_SUCCESS; | | } |
|