Sinisterly
Simple Vbscript - Printable Version

+- Sinisterly (https://sinister.li)
+-- Forum: Coding (https://sinister.li/Forum-Coding)
+--- Forum: Coding (https://sinister.li/Forum-Coding--71)
+--- Thread: Simple Vbscript (/Thread-Simple-Vbscript)



Simple Vbscript - VORTEXDEVIL - 11-17-2011

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]













RE: Simple Vbscript - Coder-san - 11-18-2011

If somebody is a newbie then you don't have to make fun of him. It could be an achievement for him.


RE: Simple Vbscript - ArkPhaze - 11-27-2011

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.


RE: Simple Vbscript - ReaperX - 12-02-2011

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



RE: Simple Vbscript - ArkPhaze - 12-02-2011

(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.


RE: Simple Vbscript - ReaperX - 12-03-2011

(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.




RE: Simple Vbscript - ArkPhaze - 12-03-2011

(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



RE: Simple Vbscript - ReaperX - 12-03-2011

Didnt Think of that xD :oO: