-
HELP ME HELP ME HELP ME HELP ME HELP ME HELP ME HELP ME
Do you know the anti-trojans program Netbuster???
When someone with Netbus connect to your PC,the Netbuster send him msgboxes endless.
I think that it has been programmed in C++,but in VB do you know if is possible to send a lot of msgboxes at the same time on video;I've tried to put on a timer with 500 ms of interval a msgbox but the code wait each time the user click on its buttons to go ahead.
How is possible to continue to execute the code without waiting user click buttons?
Please help me as soon as possible!!!
-
Try this: create a new standard exe project, and delete the form. create a module with the following code in it:
Code:
Sub Main()
' do your stuff here (one time only)
' for example:
Msgbox "Hello"
End Sub
Compile the EXE and make sure it goes with your app.
Now, in the app you want to do the fast messages:
Code:
For I = 1 To 2000 'or whatever
Shell "DoMsgBox.EXE" 'put the name of the msg exe here
Next I
Using variations on this idea you should be able to do what you're after.
P.S. I love Netbuster. Heheh.