www.pudn.com > gaoScreenSaver.zip > curveSplash.frm
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 1 'Fixed Single
ClientHeight = 5190
ClientLeft = 225
ClientTop = 1380
ClientWidth = 7380
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "curveSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5190
ScaleWidth = 7380
StartUpPosition = 2 'CenterScreen
Begin VB.Frame Frame1
Height = 4995
Left = 150
TabIndex = 0
Top = 60
Width = 7080
Begin VB.CommandButton Command2
Caption = "Cancel"
Height = 375
Left = 3480
TabIndex = 3
Top = 4440
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "OK"
Height = 375
Left = 1920
TabIndex = 2
Top = 4440
Width = 1215
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = $"curveSplash.frx":000C
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 3735
Left = 120
TabIndex = 1
Top = 240
Width = 6855
End
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Unload frmSplash
Form1.Enabled = True
Form1.SetFocus
End Sub
Private Sub Command2_Click()
End
End Sub