?? frmstart.frm
字號(hào):
VERSION 5.00
Begin VB.Form frmStart
BackColor = &H00000000&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 3000
ClientLeft = 255
ClientTop = 1410
ClientWidth = 3810
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmStart.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3000
ScaleWidth = 3810
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Frame Frame1
BackColor = &H00000000&
ForeColor = &H00FFFFFF&
Height = 3675
Left = 0
TabIndex = 0
Top = -120
Width = 3840
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 = 1080
TabIndex = 7
Top = 2040
Width = 2655
End
Begin VB.Label lblCompanyProduct
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Prototype Stereo Vision Platform"
BeginProperty Font
Name = "Arial"
Size = 11.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0080FFFF&
Height = 270
Left = 270
TabIndex = 6
Top = 960
Width = 3465
End
Begin VB.Label lblProductName
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Rodney"
BeginProperty Font
Name = "Times New Roman"
Size = 36
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 825
Left = 360
TabIndex = 5
Top = 120
Width = 2145
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 = 1440
TabIndex = 3
Top = 1620
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 = 1440
TabIndex = 2
Top = 1830
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 = 1
Top = 2640
Width = 3495
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 = 2850
TabIndex = 4
Top = 1260
Width = 885
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
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
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -