home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form dlgAbout
- BorderStyle = 3 'Fixed Dialog
- Caption = "About"
- ClientHeight = 1395
- ClientLeft = 45
- ClientTop = 285
- ClientWidth = 3345
- ControlBox = 0 'False
- Icon = "frmAbout.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 93
- ScaleMode = 3 'Pixel
- ScaleWidth = 223
- ShowInTaskbar = 0 'False
- StartUpPosition = 1 'CenterOwner
- Begin VB.CommandButton cmdOk
- Caption = "&OK"
- Height = 465
- Left = 2790
- TabIndex = 0
- Top = 810
- Width = 465
- End
- Begin VB.Label Label2
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 240
- Left = 120
- TabIndex = 2
- Top = 480
- Width = 3060
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 240
- Left = 105
- TabIndex = 1
- Top = 120
- Width = 3090
- End
- Begin VB.Image Image2
- BorderStyle = 1 'Fixed Single
- Height = 390
- Left = 1140
- MouseIcon = "frmAbout.frx":030A
- MousePointer = 99 'Custom
- Picture = "frmAbout.frx":045C
- ToolTipText = "Visit us at http://www.computersimple.com/"
- Top = 870
- Width = 1065
- End
- Begin VB.Image Image1
- Height = 480
- Left = 120
- Picture = "frmAbout.frx":1626
- Top = 810
- Width = 480
- End
- Attribute VB_Name = "dlgAbout"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdOk_Click()
- On Error Resume Next
- Me.Hide
- End Sub
- Private Sub Form_Load()
- On Error Resume Next
- Me.ZOrder
- Label1 = App.EXEName & " Ver " & CStr(App.Major) & "." & CStr(App.Minor) & IIf(App.Revision > 0, "." & CStr(App.Revision), "")
- Label2 = Chr$(169) & "1997"
- End Sub
- Private Sub Image2_Click()
- On Error Resume Next
- Me.Hide
- End Sub
-