home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmSplash
- AutoRedraw = -1 'True
- BackColor = &H00FFFFFF&
- BorderStyle = 3 'Fixed Dialog
- ClientHeight = 3810
- ClientLeft = 45
- ClientTop = 45
- ClientWidth = 7290
- ControlBox = 0 'False
- Icon = "frmSplash.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 254
- ScaleMode = 3 'Pixel
- ScaleWidth = 486
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Visible = 0 'False
- Begin VB.PictureBox Picture1
- BackColor = &H80000002&
- Height = 3495
- Left = 150
- ScaleHeight = 3435
- ScaleWidth = 6915
- TabIndex = 0
- Top = 150
- Width = 6975
- Begin VB.PictureBox picLogo
- Height = 585
- Left = 810
- Picture = "frmSplash.frx":000C
- ScaleHeight = 525
- ScaleWidth = 555
- TabIndex = 1
- Top = 780
- Width = 615
- End
- Begin VB.Label lblCopyright
- BackStyle = 0 'Transparent
- Caption = "Copyright Harvey Entertainment inc."
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000009&
- Height = 255
- Left = 4200
- TabIndex = 7
- Tag = "Copyright"
- Top = 3060
- Width = 2655
- End
- Begin VB.Label lblVersion
- Alignment = 1 'Right Justify
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Version 1.0"
- BeginProperty Font
- Name = "Arial"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000009&
- Height = 285
- Left = 5460
- TabIndex = 6
- Tag = "Version"
- Top = 2460
- Width = 1275
- End
- Begin VB.Label lblPlatform
- Alignment = 1 'Right Justify
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Win95/98"
- BeginProperty Font
- Name = "Arial"
- Size = 15.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000009&
- Height = 360
- Left = 5340
- TabIndex = 5
- Tag = "Platform"
- Top = 2100
- Width = 1395
- End
- Begin VB.Label lblCompanyProduct
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Harvey Net-Game"
- BeginProperty Font
- Name = "Arial"
- Size = 18
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000009&
- Height = 435
- Left = 2235
- TabIndex = 4
- Tag = "CompanyProduct"
- Top = 465
- Width = 2955
- End
- Begin VB.Label lblProductName
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "VG Chess"
- BeginProperty Font
- Name = "Arial"
- Size = 32.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000009&
- Height = 765
- Left = 2250
- TabIndex = 3
- Tag = "Product"
- Top = 900
- Width = 3045
- End
- Begin VB.Label lblLicenseTo
- Alignment = 1 'Right Justify
- BackStyle = 0 'Transparent
- Caption = "LicenseTo"
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000009&
- Height = 255
- Left = 0
- TabIndex = 2
- Tag = "LicenseTo"
- Top = 0
- Width = 6855
- End
- End
- Attribute VB_Name = "frmSplash"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- OutSquare 0, 0, ScaleWidth - 1, ScaleHeight, Me
- InSquare Picture1.Left, Picture1.Top, Picture1.Width - 1, Picture1.Height, Me
- ' InSquare Text1.Left, Text1.Top, Text1.Width - 1, Text1.Height, Me
- lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
- lblProductName.Caption = App.Title
- End Sub
- Private Sub fraMainFrame_DragDrop(Source As Control, X As Single, Y As Single)
- End Sub
-