PDA

View Full Version : "Virus"



Negaal
12-27-2007, 05:14 AM
Hehe, litle funny thing i made in 5 mins

It's not harmful btw...

Really useful to scare kids

R0b0t1
12-30-2007, 08:55 PM
Lol?

Rikje
12-30-2007, 08:58 PM
Lawl :)

**sends it to some of his friends**

GoF
12-31-2007, 12:53 PM
Source included?

kor
12-31-2007, 01:04 PM
rofl! im totally gonna send this to my friends! haha!

Negaal
12-31-2007, 01:20 PM
Source included?

eh, I think i didn't saved project, I may check...

Hehe, I'm really nooby in vb :p

EDIT:Didn't found...maybe in another computer...

GoF
12-31-2007, 08:21 PM
eh, I think i didn't saved project, I may check...

Hehe, I'm really nooby in vb :p

EDIT:Didn't found...maybe in another computer...

Then do not care. I don't want any "virus" stuff if it doesn't come with the source..

kor
12-31-2007, 08:25 PM
rofl, i just sent this to a guy who wanted a auto woodcutter =P you should have seen him rofl!

GoF
12-31-2007, 08:53 PM
rofl, i just sent this to a guy who wanted a auto woodcutter =P you should have seen him rofl!

I don't suggest sending fake viruses to people who are near enough to see you.

kor
12-31-2007, 09:51 PM
no problemo gof, i told him that it was fake..=P and hes not near me

A G E N T
01-03-2008, 01:13 AM
Lol, nice one :)

I like how it says "Please restart."

insanomano
01-03-2008, 01:48 AM
u guys sure thats not real cuz i went to instal and said trojan was installed lol. that freaked me out lol. :)

~Insanomano~

gamer 5
01-05-2008, 02:50 AM
Very Funny Please Tell us the code

gamer 5
01-05-2008, 10:11 PM
How did you make it start the progress bar without clicking any buttons?

Negaal
01-07-2008, 08:08 PM
How did you make it start the progress bar without clicking any buttons?

Timer :)

I redid it to Gof...


Private Sub Command1_Click()
Form2.Show
Command1.Visible = False
End Sub

Private Sub Form_Load()
Label2.Visible = False
End Sub

Private Sub Timer1_Timer()
ProgressBar1.Value = ProgressBar1.Value + 2
If ProgressBar1.Value >= ProgressBar1.Max Then
Timer1.Enabled = False
Label2.Visible = True
Label1.Visible = False
Command1.Visible = True
End If
End Sub

Daniel
01-08-2008, 08:56 AM
Disable the TaskBar and the MenuBar and remove the bar up the top which has the Minimize, Maximize and Close controls. And make the user press a certain FKey before it restores to normal.

That ^^ would be the best :p