Monday, October 20, 2014

How to make message boxes with vbs.

If you want a popup box to come up when someone clicks on it then you can do this.  To make a message box you must do the msgbox command.  This is the syntax.
msgbox("Hi")
If you want it to never go away you could do it like this.
Do
msgbox("Hi")
Loop
You can also do more than one box.
msgbox("Hi")
msgbox("Wassup")
You must save it as filename.vbs .

No comments:

Post a Comment