Hey,
I made a VB6 project one day after school and wanted to trick some-one :P
It basically shows error messages saying it's unable to be opened and then shows a fake virus screen! :P
So here it is.. clicky
Cya,Code:Source Code: Private Sub Command1_Click() Timer1.Enabled = True Command1.Enabled = False End Sub Private Sub Command3_Click() MsgBox "Windows does not reccomend ignoring this problem." & vbNewLine & "Do you wish to continue?", vbYesNo, "Windows Critical Error" MsgBox "You have been Pranked by Daney!" & vbNewLine & "" & vbNewLine & "Your computer has not been affected in any way.", vbOKOnly, "Daney Pranked you!" End End Sub Private Sub Form_Load() MsgBox "Windows could not start the following application: DANEYBROWSER.EXE", vbCritical, "Windows Critical Error" End Sub Private Sub Form_Terminate() MsgBox "You have been Pranked by Daney!" & vbNewLine & "" & vbNewLine & "Your computer has not been affected in any way.", vbOKOnly, "Daney Pranked you!" End Sub Private Sub Timer1_Timer() ProgressBar1.Value = ProgressBar1.Value + 1 If ProgressBar1.Value = 15 Then MsgBox "Unable to Remove selected Items!", vbCritical, "Windows Error" Timer1.Enabled = False End If End Sub
Daney



Reply With Quote![[VB6] Fake Virus *Realistic* [VB6]](http://ragezone.com/hyper728.png)


