summaryrefslogtreecommitdiff
path: root/windows 95/2002 virus labels.vb
diff options
context:
space:
mode:
authorJamie Mansfield <[email protected]>2015-03-01 10:50:24 +0000
committerJamie Mansfield <[email protected]>2015-03-01 10:50:24 +0000
commitdfac3489c438f5c54bff088a354815e79675b531 (patch)
treedafec547b0e8592e34d8aa756c9500407ebc3c1b /windows 95/2002 virus labels.vb
downloadhistacom-dfac3489c438f5c54bff088a354815e79675b531.tar.gz
histacom-dfac3489c438f5c54bff088a354815e79675b531.tar.bz2
histacom-dfac3489c438f5c54bff088a354815e79675b531.zip
Initial commit
Diffstat (limited to 'windows 95/2002 virus labels.vb')
-rwxr-xr-xwindows 95/2002 virus labels.vb12
1 files changed, 12 insertions, 0 deletions
diff --git a/windows 95/2002 virus labels.vb b/windows 95/2002 virus labels.vb
new file mode 100755
index 0000000..3ea801e
--- /dev/null
+++ b/windows 95/2002 virus labels.vb
@@ -0,0 +1,12 @@
+Public Class _2002_virus_labels
+ Dim white As Boolean = True
+ Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
+ If white = True Then
+ original.ForeColor = Color.Black
+ white = False
+ Else
+ original.ForeColor = Color.White
+ white = True
+ End If
+ End Sub
+End Class \ No newline at end of file