VERSION 4.00 Begin VB.Form frmAbout Appearance = 0 'Flat BackColor = &H00C0C0C0& BorderStyle = 1 'Fixed Single Caption = "About" ClientHeight = 3975 ClientLeft = 915 ClientTop = 2205 ClientWidth = 4545 ClipControls = 0 'False ControlBox = 0 'False BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 8.25 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H80000008& Height = 4380 Left = 855 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 3972 ScaleMode = 0 'User ScaleWidth = 4548 Top = 1860 Width = 4665 Begin VB.Frame fraAbout Appearance = 0 'Flat BackColor = &H00C0C0C0& ForeColor = &H80000008& Height = 2772 Left = 120 TabIndex = 0 Top = 120 Width = 4332 Begin VB.Label lblAbout Alignment = 2 'Center Appearance = 0 'Flat BackColor = &H80000005& BackStyle = 0 'Transparent ForeColor = &H80000008& Height = 2292 Left = 120 TabIndex = 2 Top = 240 Width = 4092 End End Begin VB.CommandButton cmdAbout Appearance = 0 'Flat BackColor = &H80000005& Cancel = -1 'True Caption = "OK" Default = -1 'True Height = 612 Left = 1560 TabIndex = 1 Top = 3120 Width = 1452 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. We use the Unload statement here to ' unload 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