home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmAbout
- BorderStyle = 3 'Fixed Dialog
- Caption = "About Best Team Selector"
- ClientHeight = 3990
- ClientLeft = 1140
- ClientTop = 1515
- ClientWidth = 4200
- Height = 4395
- Left = 1080
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3990
- ScaleWidth = 4200
- ShowInTaskbar = 0 'False
- Top = 1170
- Width = 4320
- Begin VB.Frame Frame1
- Caption = "Current Database"
- Height = 555
- Left = 0
- TabIndex = 4
- Top = 2340
- Width = 4185
- Begin VB.Label lblMDB
- Caption = "MDB"
- Height = 255
- Left = 60
- TabIndex = 5
- Top = 240
- Width = 4095
- End
- End
- Begin VB.PictureBox Picture1
- Height = 2295
- Left = 0
- ScaleHeight = 2235
- ScaleWidth = 2895
- TabIndex = 1
- Top = 60
- Width = 2955
- Begin VB.Label Label2
- Alignment = 2 'Center
- Caption = "FWorkshop@aol.com"
- Height = 315
- Left = 30
- TabIndex = 6
- Top = 1440
- Width = 2865
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- Caption = "Created by Frank Font 1995"
- Height = 315
- Left = 240
- TabIndex = 3
- Top = 1170
- Width = 2445
- End
- Begin VB.Label lblVersion
- Alignment = 2 'Center
- Caption = "Version Info"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 12
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 60
- TabIndex = 2
- Top = 1800
- Width = 2835
- End
- Begin VB.Image Image1
- Height = 960
- Left = 240
- Picture = "About.frx":0000
- Top = 150
- Width = 2490
- End
- End
- Begin VB.CommandButton cmdOK
- Caption = "&OK"
- Height = 525
- Left = 3060
- TabIndex = 0
- Top = 60
- Width = 1065
- End
- Begin VB.Image Image2
- Height = 675
- Left = 600
- Picture = "About.frx":2E42
- Top = 3120
- Width = 2970
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdOK_Click()
- Unload frmAbout
- End Sub
- Private Sub Form_Load()
- Left = (Screen.Width - Width) / 2
- TOP = (Screen.Height - Height) / 2
- lblVersion.Caption = "Version " + gProgramVersion
- lblMDB = gMainDBName
- MousePointer = 0
- End Sub
- Private Sub lblVersion_Click()
- lblVersion = "Version " + gProgramVersion + " Rev " + gProgramRevision
- End Sub
-