| Joined: Nov 2003 Posts: 37 Junior Member | Junior Member Joined: Nov 2003 Posts: 37 | ok i get to include # <iostream.h> int main() { int x=0; while(x<10000) { cout<<x<<endl; x++;
return 0; } ok and iv tryed a hole buntch of [censored] to put the [censored] message box in there i want it to do the numbers and the message box to pop up and i dont know how someone help
Kill or be killed
| | |
▼ Sponsored Links ▼
▲ Sponsored Links ▲
| | | Joined: Mar 2002 Posts: 1,136 UGN Elite Poster | UGN Elite Poster Joined: Mar 2002 Posts: 1,136 | Well you're doing basic console programming there. If you want a message box, you're gonna need to use the Win32 API. I don't know anything about it really, do some searching for Win32 API tutorials, or talk to SilentRage. | | | | Joined: Mar 2002 Posts: 1,273 DollarDNS Owner | DollarDNS Owner Joined: Mar 2002 Posts: 1,273 | MessageBox(0, "Message", "Title", MB_OK); | | | | Joined: Aug 2003 Posts: 240 Member | Member Joined: Aug 2003 Posts: 240 | you'll have to include <windows.h> to get the win32api calls to work.. int MessageBox( HWND hWnd, // handle of owner window LPCTSTR lpText, // address of text in message box LPCTSTR lpCaption, // address of title of message box UINT uType // style of message box ); use silentrage's example as a guide MB_OK is just a type of messagebox MB_ICONWARNING is another just get win32.hlp also known as windows 32 api refrenece
The wise make mistakes, the fools repeat them ---------------------------------------- When you have eliminated the impossible, that which remains, however improbable, must be the truth
| | | | Joined: Nov 2003 Posts: 37 Junior Member | Junior Member Joined: Nov 2003 Posts: 37 | i tryed the MessageBox(0, "Message", "Title", MB_OK); [censored] didnt work any other ideas?
Kill or be killed
| | | | Joined: Aug 2003 Posts: 240 Member | Member Joined: Aug 2003 Posts: 240 | why didnt it work.. you have to #include <windows.h> it holds the win32api functions show your new source #include <iostream>
#include <windows.h>
int main(){
for(int x=0;x<10000;x++){
MessageBox(NULL,"pwnd noobie","long loop huh?",MB_OK);
}
return 0;
} there is a loop for you i wudnt run it if i were u :p make the reitterations smaller
The wise make mistakes, the fools repeat them ---------------------------------------- When you have eliminated the impossible, that which remains, however improbable, must be the truth
| | | | Joined: Nov 2003 Posts: 37 Junior Member | Junior Member Joined: Nov 2003 Posts: 37 | whats windows.h like whats it needed for? i got the program and all but whats the differt [censored].h used for?
Kill or be killed
| | | | Joined: Mar 2002 Posts: 1,273 DollarDNS Owner | DollarDNS Owner Joined: Mar 2002 Posts: 1,273 | MessageBox works only on windows (and windows emulators). windows comes with that function. "windows.h" tells the compiler you want to use windows specific functions. Without it the compiler wouldn't know what the heck a "MessageBox" function is. Each *.h file tells the compiler about new functions you can use. | | | | Joined: Nov 2003 Posts: 37 Junior Member | Junior Member Joined: Nov 2003 Posts: 37 |
Kill or be killed
| | | | Joined: Nov 2003 Posts: 37 Junior Member | Junior Member Joined: Nov 2003 Posts: 37 | ok i tryed the <windows.h> and the rest of that [censored] it diddnt work i got 31 errors <img border="0" alt=" " title="" src="graemlins/eek.gif" />
Kill or be killed
| | | | Joined: Mar 2002 Posts: 93 Junior Member | Junior Member Joined: Mar 2002 Posts: 93 | what compiler && windows system are you using?
- "It's not my code that's useless it's you loosers being unable to apprecitate it because of your lack of skills!" /zenon - C++ master Apprentice
| | | | Joined: Nov 2003 Posts: 37 Junior Member | Junior Member Joined: Nov 2003 Posts: 37 |
Kill or be killed
| | | | Joined: Nov 2003 Posts: 37 Junior Member | Junior Member Joined: Nov 2003 Posts: 37 |
Kill or be killed
| | | | Joined: Aug 2003 Posts: 240 Member | Member Joined: Aug 2003 Posts: 240 | post your errors and was it with my app or yours.. coz mine works fine
The wise make mistakes, the fools repeat them ---------------------------------------- When you have eliminated the impossible, that which remains, however improbable, must be the truth
| | | | Joined: Nov 2003 Posts: 37 Junior Member | Junior Member Joined: Nov 2003 Posts: 37 | its on my comp and im on my moms
Kill or be killed
| | |
Forums41 Topics33,840 Posts68,858 Members2,176 | Most Online3,253 Jan 13th, 2020 | | | |