Make popup window using notepad

This is very scary trick you can scare your friend using this

In notepad type (better copy and paste)

text1=msgbox("your text here",52,"your title here")

In the "your text here" area write anytext you want to be appear in popup.

In "your title here" write text which will define the heading of Popup..

like i have written..

text1=msgbox("Do you love computereducationworld.com ",52,"Give comment")

save this file as anything.vbs (or whatever you want just add .vbs at the end)

and

change the file type to all files (remember to do this)

your message will appear like this:

1

If you add 48 instead of  52

like :

text1=msgbox("Do you love computereducationworld.com ",48,"Give comment")

it appear like this with only one button OK

2

If you add 16

like :

text1=msgbox("Do you love computereducationworld.com ",16,"Give comment")

it appears with an error sign

3

If you want to repeat popup window to many times just copy and paste to the desired no. of times

like:

text1=msgbox("Do you love computereducationworld.com ",52,"Give comment")

text1=msgbox("Do you love computereducationworld.com ",52,"Give comment")

text1=msgbox("Do you love computereducationworld.com ",52,"Give comment")

text1=msgbox("Do you love computereducationworld.com ",52,"Give comment")

text1=msgbox("Do you love computereducationworld.com ",52,"Give comment")

This will repeat popup to 5 times

Post Comment
Login to post comments