home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmAbout
- BackColor = &H00C0C0C0&
- BorderStyle = 1 'Fixed Single
- Caption = "About"
- ClientHeight = 4800
- ClientLeft = 915
- ClientTop = 2205
- ClientWidth = 5790
- ClipControls = 0 'False
- ControlBox = 0 'False
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 5205
- Left = 855
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4800
- ScaleMode = 0 'User
- ScaleWidth = 5784
- Top = 1860
- Width = 5910
- Begin VB.CommandButton cmdAbout
- Cancel = -1 'True
- Caption = "OK"
- Default = -1 'True
- Height = 612
- Left = 2160
- TabIndex = 1
- Top = 4080
- Width = 1452
- End
- Begin VB.Frame fraAbout
- BackColor = &H00C0C0C0&
- Height = 3732
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 5532
- Begin VB.Label lblAbout
- BackStyle = 0 'Transparent
- Height = 3252
- Left = 120
- TabIndex = 2
- Top = 360
- Width = 5292
- End
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub cmdAbout_Click()
- ' This form is loaded as a modal dialog. The Unload statement
- ' releases the form from memory when the user clicks the OK command button.
- Unload frmAbout
- End Sub
- Private Sub Form_Load()
- ' The form is horizontally and vertically centered when loaded.
- Top = Screen.Height / 2 - Height / 2
- Left = Screen.Width / 2 - Width / 2
- End Sub
- Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
- ' The general procedure DoUnLoadPreCheck handles the possible unload options
- ' for all three forms in this sample application.
- DoUnLoadPreCheck UnloadMode
- End Sub
-