home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form4
- Caption = "Remind Me"
- ClientHeight = 5475
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 5460
- ControlBox = 0 'False
- LinkTopic = "Form4"
- Picture = "Form4.frx":0000
- ScaleHeight = 5475
- ScaleWidth = 5460
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'Bildschirmmitte
- Begin VB.Timer Timer1
- Interval = 2000
- Left = 3120
- Top = 4080
- End
- Begin VB.Image Image1
- Height = 5490
- Left = 0
- Picture = "Form4.frx":4EEA
- Stretch = -1 'True
- Top = 0
- Width = 5490
- End
- Attribute VB_Name = "Form4"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Check1_Click()
- Select Case Check1.Value
- Case Checked
- SetWindowPos hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE + SWP_NOSIZE
- Case Unchecked
- SetWindowPos hWnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE + SWP_NOSIZE
- End Select
- End Sub
- Private Sub Timer1_Timer()
- Form2.Show
- Timer1.Enabled = False
- Form4.Hide
- End Sub
-