UGN Security
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
Posted By: pergesu Re: how to insurt a message box into a loop - 11/05/03 06:05 AM
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.
MessageBox(0, "Message", "Title", MB_OK);
Posted By: paradox Re: how to insurt a message box into a loop - 11/05/03 08:12 AM
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
i tryed the MessageBox(0, "Message", "Title", MB_OK); [censored] didnt work any other ideas?
Posted By: paradox Re: how to insurt a message box into a loop - 11/15/03 08:05 AM
why didnt it work..
you have to #include <windows.h>
it holds the win32api functions
show your new source
Code
#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
whats windows.h like whats it needed for?
i got the program and all but whats the differt [censored].h used for?
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.
k kool got it
ok i tryed the <windows.h> and the rest of that [censored] it diddnt work i got 31 errors <img border="0" alt="eek" title="" src="graemlins/eek.gif" />
Posted By: zenon Re: how to insurt a message box into a loop - 11/17/03 04:29 PM
what compiler && windows system are you using?
im using dev c++ it kool
and me windows
Posted By: paradox Re: how to insurt a message box into a loop - 11/18/03 07:54 AM
post your errors and was it with my app or yours.. coz mine works fine
its on my comp and im on my moms
© UGN Security Forum