From dfac3489c438f5c54bff088a354815e79675b531 Mon Sep 17 00:00:00 2001 From: Jamie Mansfield Date: Sun, 1 Mar 2015 10:50:24 +0000 Subject: Initial commit --- windows 95/2002 virus labels.vb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 windows 95/2002 virus labels.vb (limited to 'windows 95/2002 virus labels.vb') 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 -- cgit v1.2.3