home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmMorning
- BackColor = &H00C00000&
- BorderStyle = 3 'Fixed Dialog
- ClientHeight = 1455
- ClientLeft = 75
- ClientTop = 75
- ClientWidth = 4680
- ControlBox = 0 'False
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1455
- ScaleWidth = 4680
- ShowInTaskbar = 0 'False
- StartUpPosition = 3 'Windows Default
- Begin VB.Timer Timer1
- Interval = 500
- Left = 270
- Top = 1170
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Good Morning!"
- BeginProperty Font
- Name = "Swis721 Cn BT"
- Size = 26.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = -1 'True
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H000000FF&
- Height = 825
- Left = 180
- TabIndex = 0
- Top = 450
- Width = 4155
- End
- Attribute VB_Name = "frmMorning"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- ' Copyright
- 1997 by Desaware Inc. All Rights Reserved
- Dim counter&
- Private Sub Form_Load()
- counter = 0
- End Sub
- Private Sub Timer1_Timer()
- Label1.Visible = Not Label1.Visible
- counter = counter + 1
- If counter > 8 Then Unload Me
- End Sub
-