home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Flash
- BackColor = &H80000008&
- BorderStyle = 1 'Fixed Single
- Caption = "Flashing Font"
- ClientHeight = 1890
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 4680
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1890
- ScaleWidth = 4680
- StartUpPosition = 2 'CenterScreen
- Begin VB.CommandButton Return
- BackColor = &H80000012&
- Caption = "&Return"
- Height = 255
- Left = 4080
- MaskColor = &H00FFFFFF&
- Style = 1 'Graphical
- TabIndex = 1
- Top = 1560
- Width = 495
- End
- Begin VB.Timer Timer2
- Interval = 100
- Left = 840
- Top = 1200
- End
- Begin VB.Timer Timer1
- Interval = 10
- Left = 120
- Top = 1200
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Scott Wellbrock"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 24
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 735
- Left = 600
- TabIndex = 0
- Top = 480
- Width = 3615
- End
- Attribute VB_Name = "Flash"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- Label1.ForeColor = &H800080
- Timer1.Enabled = True
- Timer2.Enabled = True
- End Sub
- Private Sub Return_Click()
- Graphics.Show
- Unload Flash
- End Sub
- Private Sub Timer1_Timer()
- Timer1.Enabled = False
- Label1.ForeColor = Val(Label1.ForeColor) * Rnd
- Timer1.Enabled = True
- End Sub
- Private Sub Timer2_Timer()
- Timer2.Enabled = False
- Label1.ForeColor = &H800080
- Timer2.Enabled = True
- End Sub
-