Login Register






Simple Vbscript filter_list
Author
Message
Simple Vbscript #1
Im Going To Teach You How To Make A Annoying pop up in 2 ways :dance:

First Of All Open NotePad And Type in

msgbox "Your Message" ,99 , "Title"<-----------This is One

Or

msgbox "YOU GOT A VIRUS FAGGOT" <----- IF You Type One Of This its going to be more than one




You Can Put As Much As You Want Thats How Much It Times It Will Pop Up

[Image: 51133540.png]


Once Your Done Go To File And Save as "something.vbs

(NOTE: MOST IMPORTANT THING IS .VBS)

*They Are Both .Vbs*

[Image: avagfs.png]


You Just Created A Annoying Pop Up :dance:


This Is What It Looks Like When You Open It Smile


[Image: dawda.png]











Reply

RE: Simple Vbscript #2
If somebody is a newbie then you don't have to make fun of him. It could be an achievement for him.
[Image: rytwG00.png]
Redcat Revolution!

Reply

RE: Simple Vbscript #3
You should try using a loop instead of just retyping it out x number of times.

Code:
For i = 1 to 10 MsgBox "My Message Here", 64, "My Title Here" Next

64 will display an actuall messagebox icon too.
ArkPhaze
"Object oriented way to get rich? Inheritance"
Getting Started: C/C++ | Common Mistakes
[ Assembly / C++ / .NET / Haskell / J Programmer ]

Reply

RE: Simple Vbscript #4
Just Install AutoIt (Link) And Use The Code Below.

Edit:

Code:
$i = 0 Do $i = $i + 1 MsgBox(0, "Msg Title", "Message") Until $i = 50
(This post was last modified: 12-03-2011, 02:00 AM by doojan.)

Reply

RE: Simple Vbscript #5
(12-02-2011, 01:18 PM)ReaperX Wrote: Just Install AutoIt (Link) And Use The Code Below.

Code:
MsgBox(0, "Msg Title", "Message")

I don't think that helps him though if he wants to learn VBS, and that script you posted doesn't loop through a message box popup either.
ArkPhaze
"Object oriented way to get rich? Inheritance"
Getting Started: C/C++ | Common Mistakes
[ Assembly / C++ / .NET / Haskell / J Programmer ]

Reply

RE: Simple Vbscript #6
(12-02-2011, 10:50 PM)Infinity Wrote:
(12-02-2011, 01:18 PM)ReaperX Wrote: Just Install AutoIt (Link) And Use The Code Below.

Code:
MsgBox(0, "Msg Title", "Message")

I don't think that helps him though if he wants to learn VBS, and that script you posted doesn't loop through a message box popup either.

It Will help Him With AutoIt a Little if He Decides To Learn it and I Fixed the Code So That It Loops.


Reply

RE: Simple Vbscript #7
(12-03-2011, 01:59 AM)ReaperX Wrote:
(12-02-2011, 10:50 PM)Infinity Wrote:
(12-02-2011, 01:18 PM)ReaperX Wrote: Just Install AutoIt (Link) And Use The Code Below.

Code:
MsgBox(0, "Msg Title", "Message")

I don't think that helps him though if he wants to learn VBS, and that script you posted doesn't loop through a message box popup either.

It Will help Him With AutoIt a Little if He Decides To Learn it and I Fixed the Code So That It Loops.

That does work, Smile nice.

But can you not do this?
Code:
$i = 0 Do $i += 1 MsgBox(0, "Msg Title", "Message") Until $i = 50

Or this?
Code:
$i = 0 Do $i++ MsgBox(0, "Msg Title", "Message") Until $i = 50
ArkPhaze
"Object oriented way to get rich? Inheritance"
Getting Started: C/C++ | Common Mistakes
[ Assembly / C++ / .NET / Haskell / J Programmer ]

Reply

RE: Simple Vbscript #8
Didnt Think of that xD :oO:

Reply