home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmAbout
- BackColor = &H00C0C0C0&
- BorderStyle = 0 'None
- ClientHeight = 2550
- ClientLeft = 3165
- ClientTop = 5235
- ClientWidth = 5370
- ClipControls = 0 'False
- Height = 2955
- Left = 3105
- LinkTopic = "Form1"
- ScaleHeight = 2550
- ScaleWidth = 5370
- Top = 4890
- Visible = 0 'False
- Width = 5490
- Begin CommandButton btnOK
- Caption = "&OK"
- Default = -1 'True
- Height = 375
- Left = 2160
- TabIndex = 4
- Top = 2100
- Visible = 0 'False
- Width = 1095
- End
- Begin Label Label1
- BackStyle = 0 'Transparent
- Caption = "Compuserve: 72557,3632 Internet: 72557.3632@Compuserve.com"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 435
- Left = 2280
- TabIndex = 5
- Top = 1440
- Width = 3015
- WordWrap = -1 'True
- End
- Begin Label Label4
- BackStyle = 0 'Transparent
- Caption = "All Rights Reserved. Legal use subject to conditions."
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 435
- Left = 2280
- TabIndex = 0
- Top = 1020
- Width = 2775
- WordWrap = -1 'True
- End
- Begin Label lblApp_Title
- BackStyle = 0 'Transparent
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 12
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 255
- Left = 2280
- TabIndex = 3
- Top = 120
- Width = 3015
- End
- Begin Label lblVersion
- BackStyle = 0 'Transparent
- Caption = "Version "
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 255
- Left = 2280
- TabIndex = 2
- Top = 420
- Width = 3015
- End
- Begin Label Label3
- BackStyle = 0 'Transparent
- Caption = "Copyright
- 1994 Thorp Technology"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 255
- Left = 2280
- TabIndex = 1
- Top = 720
- Width = 3015
- End
- Begin Image logo
- BorderStyle = 1 'Fixed Single
- Enabled = 0 'False
- Height = 1305
- Left = 120
- Picture = ABOUT.FRX:0000
- Top = 180
- Width = 1980
- End
- Begin Line Line2
- BorderColor = &H00FFFFFF&
- X1 = 150
- X2 = 5220
- Y1 = 1980
- Y2 = 1980
- End
- Begin Line Line1
- BorderColor = &H00808080&
- BorderWidth = 3
- X1 = 150
- X2 = 5200
- Y1 = 1965
- Y2 = 1965
- End
- Option Explicit
- Sub btnOK_Click ()
- btnOk.Visible = False
- Unload Me
- End Sub
- Sub Form_Load ()
- lblVersion = lblVersion & APP_VERSION_NUMBER
- lblAPP_TITLE = APP_TITLE
- If Forms.Count > 1 Then
- Left = (MDI.Width - Width) / 2 + MDI.Left ' Center form horizontally.
- Top = (MDI.Height - Height) / 2 + MDI.Top ' Center form vertically.
- Else
- Left = (Screen.Width - Width) / 2 ' Center form horizontally.
- Top = (Screen.Height - Height) / 2 ' Center form vertically.
- End If
- End Sub
- Sub Form_Paint ()
- Call Indent(logo)
- Raiseform Me
- End Sub
-