home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form2
- BackColor = &H80000001&
- Caption = "Remind Me"
- ClientHeight = 2415
- ClientLeft = 4935
- ClientTop = 3225
- ClientWidth = 3900
- FillColor = &H000000FF&
- LinkTopic = "Form2"
- Moveable = 0 'False
- ScaleHeight = 2415
- ScaleWidth = 3900
- Begin VB.Timer Timer1
- Interval = 1000
- Left = 240
- Top = 1920
- End
- Begin VB.Timer Timer5
- Interval = 2000
- Left = 2160
- Top = 1920
- End
- Begin VB.Timer Timer4
- Enabled = 0 'False
- Interval = 2000
- Left = 3120
- Top = 1920
- End
- Begin VB.Label Label5
- Alignment = 2 'Zentriert
- Appearance = 0 '2D
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- Caption = "Quit"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 18
- Charset = 0
- Weight = 400
- Underline = -1 'True
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 495
- Left = 0
- TabIndex = 2
- Top = 1560
- Width = 3855
- End
- Begin VB.Label Label4
- Alignment = 2 'Zentriert
- BackStyle = 0 'Transparent
- Caption = "About"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 18
- Charset = 0
- Weight = 400
- Underline = -1 'True
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 0
- TabIndex = 1
- Top = 840
- Width = 3855
- End
- Begin VB.Label Label3
- Alignment = 2 'Zentriert
- BackStyle = 0 'Transparent
- Caption = "Start Reminder"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 18
- Charset = 0
- Weight = 400
- Underline = -1 'True
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 495
- Left = 480
- TabIndex = 0
- Top = 120
- Width = 2895
- End
- Attribute VB_Name = "Form2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Image1_Click()
- Form1.Show
- Form2.Hide
- End Sub
- Private Sub Image2_Click()
- frmAbout.Show
- Form2.Hide
- End Sub
- Private Sub Image3_Click()
- Form3.Show
- End Sub
- Private Sub OLE2_Updated(Code As Integer)
- End Sub
- Private Sub Label1_Click()
- End Sub
- Private Sub Label3_Click()
- Form1.Show
- Unload Me
- End Sub
- Private Sub Label4_Click()
- frmAbout.Show
- End Sub
- Private Sub Label5_Click()
- Form3.Show
- End Sub
- Private Sub Timer1_Timer()
- Timer4.Enabled = True
- Timer1.Enabled = False
- End Sub
- Private Sub Timer4_Timer()
- If Label3.ForeColor = &HFF& Then
- Label3.ForeColor = &H0&
- End If
- End Sub
- Private Sub Timer5_Timer()
- If Label3.ForeColor = &H0& Then
- Label3.ForeColor = &HFF&
- End If
- End Sub
-