Message Box C++Hey ...i i want to ask someone who have c++ code to make message pop up after successfully injected ...anyone ?i use Visual Studio Express 2012 ..
You should check the forum before you post. Code: MessageBox (0,"Your message here", "Messagebox Title", MB_OK + MB_ICONINFORMATION);
Originally Posted by Obliteration You should check the forum before you post. Code: MessageBox (0,"Your message here", "Messagebox Title", MB_OK + MB_ICONINFORMATION); ouh ..sorry ..thanks for the code
Originally Posted by Obliteration No problem. Click thanks how about, after we click the button 'OK' and then POP-Out a website ? Code Please
Originally Posted by nikazizi97 how about, after we click the button 'OK' and then POP-Out a website ? Code Please Put this code below message box code: Code: system("start browser.exe http://www.website.com/"); replace the browser.exe with the real process name of the browser you choose to display the website of course.
Like this ? Code: MessageBox (0,"Your message here", "Messagebox Title", MB_OK + MB_ICONINFORMATION); system("start browser.exe http://www.website.com/"); if I want open multiples Links ? Thanks for Helping...
Originally Posted by nikazizi97 Like this ? Code: MessageBox (0,"Your message here", "Messagebox Title", MB_OK + MB_ICONINFORMATION); system("start browser.exe http://www.website.com/"); if I want open multiples Links ? Thanks for Helping... then just add another line of the code below and put a new website... Code: MessageBox (0,"Your message here", "Messagebox Title", MB_OK + MB_ICONINFORMATION); system("start browser.exe http://www.website1.com/"); system("start browser.exe http://www.website2.com/");