?? frmstart.frm
字號:
VERSION 5.00
Begin VB.Form frmStart
BackColor = &H00000000&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 3555
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7140
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmStart.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3555
ScaleWidth = 7140
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Frame Frame1
BackColor = &H00000000&
ForeColor = &H00FFFFFF&
Height = 3555
Left = 30
TabIndex = 0
Top = -60
Width = 7080
Begin VB.Timer timWait
Interval = 1000
Left = 240
Top = 2760
End
Begin VB.Label Label1
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "www.fuzzgun.btinternet.co.uk"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFC0C0&
Height = 255
Left = 4200
TabIndex = 9
Top = 3240
Width = 2655
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Face Recognition System"
BeginProperty Font
Name = "Arial"
Size = 18
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0080FFFF&
Height = 435
Left = 2400
TabIndex = 8
Top = 1200
Width = 4380
End
Begin VB.Label lblProductName
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Product"
BeginProperty Font
Name = "Arial"
Size = 32.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 765
Left = 2325
TabIndex = 7
Top = 435
Width = 3270
End
Begin VB.Image imgLogo
Height = 2385
Left = 600
Picture = "frmStart.frx":000C
Stretch = -1 'True
Top = 435
Width = 1815
End
Begin VB.Label lblCopyright
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "Copyright (c) 1996-2001"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFC0C0&
Height = 255
Left = 4560
TabIndex = 4
Top = 2820
Width = 2295
End
Begin VB.Label lblCompany
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "Sluggish Software"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFC0C0&
Height = 255
Left = 4560
TabIndex = 3
Top = 3030
Width = 2295
End
Begin VB.Label lblWarning
BackStyle = 0 'Transparent
Caption = "This computer program may be freely used for non-commercial or research purposes only."
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0FFC0&
Height = 555
Left = 150
TabIndex = 2
Top = 3000
Width = 3975
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Version"
BeginProperty Font
Name = "Arial"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0080FFFF&
Height = 285
Left = 5970
TabIndex = 5
Top = 2460
Width = 885
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "For Microsoft Windows"
BeginProperty Font
Name = "Arial"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0FFFF&
Height = 285
Left = 4215
TabIndex = 6
Top = 2100
Width = 2640
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 = &H0000C0C0&
Height = 255
Left = 120
TabIndex = 1
Top = 240
Visible = 0 'False
Width = 6855
End
End
End
Attribute VB_Name = "frmStart"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim secs As Integer
Private Sub Form_KeyPress(KeyAscii As Integer)
Unload Me
End Sub
Private Sub Form_Load()
lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
lblProductName.Caption = App.Title
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub timWait_Timer()
secs = secs + 1
If (secs > 2) Then
frmTesting.show
Unload frmStart
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -