home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmMessage
- AutoRedraw = -1 'True
- BorderStyle = 1 'Fixed Single
- ClientHeight = 3195
- ClientLeft = 15
- ClientTop = 15
- ClientWidth = 6750
- ControlBox = 0 'False
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3195
- ScaleWidth = 6750
- StartUpPosition = 1 'CenterOwner
- Attribute VB_Name = "frmMessage"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Click()
- ' fmainform is defined in the module
- fMainForm.WindowState = 0
- Unload Me
- End Sub
- Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
- fMainForm.WindowState = 0
- Unload Me
- End Sub
-