home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmMain
- BorderStyle = 0 'None
- Caption = "Form1"
- ClientHeight = 3435
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 3885
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 229
- ScaleMode = 3 'Pixel
- ScaleWidth = 259
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Begin VB.Shape Shape1
- Height = 1095
- Index = 3
- Left = 1320
- Shape = 2 'Oval
- Top = 960
- Width = 975
- End
- Begin VB.Shape Shape1
- Height = 1095
- Index = 2
- Left = 1920
- Shape = 2 'Oval
- Top = 480
- Width = 975
- End
- Begin VB.Shape Shape1
- Height = 1095
- Index = 1
- Left = 840
- Shape = 2 'Oval
- Top = 1200
- Width = 975
- End
- Begin VB.Shape Shape1
- Height = 135
- Index = 0
- Left = 0
- Shape = 2 'Oval
- Top = 0
- Width = 15
- End
- Attribute VB_Name = "frmMain"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub AlwaysOnTop(TOF As Boolean)
- If TOF = True Then
- ' Turn on the TopMost attribute.
- SetWindowPos hwnd, conHwndTopmost, 0, 0, 0, 0, 3
- Else
- ' Turn off the TopMost attribute.
- SetWindowPos hwnd, conHwndNoTopmost, 0, 0, 0, 0, 3
- End If
- End Sub
- Private Sub Form_Load()
- Shapes Me
- End Sub
-