Results 1 to 2 of 2

Thread: MSGBOXES HELP!!! ANSWER ME

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2000
    Location
    Rome,Italy
    Posts
    14
    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!!!

  2. #2
    Frenzied Member mlewis's Avatar
    Join Date
    Sep 2000
    Posts
    1,226
    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.
    M. Lewis
    Pi-Q Software
    How many mouse clicks does it take to cook breakfast?

    Blargh! I am dead!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width