?? frmface.frm
字號:
VERSION 5.00
Begin VB.Form FrmFace
BorderStyle = 0 'None
Caption = "云臺控制系統(tǒng)"
ClientHeight = 3705
ClientLeft = 0
ClientTop = 0
ClientWidth = 4950
ClipControls = 0 'False
ControlBox = 0 'False
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
MousePointer = 11 'Hourglass
ScaleHeight = 3705
ScaleWidth = 4950
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Timer Timer1
Left = 0
Top = 1080
End
Begin VB.Label Label3
Caption = "@版權(quán)為北工大現(xiàn)代教育技術(shù)中心所有2003"
Height = 255
Left = 840
TabIndex = 2
Top = 3240
Width = 3615
End
Begin VB.Line Line1
BorderColor = &H000000FF&
BorderWidth = 3
X1 = 600
X2 = 4320
Y1 = 1680
Y2 = 1680
End
Begin VB.Label Label2
Alignment = 2 'Center
BorderStyle = 1 'Fixed Single
Caption = "北京工業(yè)大學現(xiàn)代教育技術(shù)中心研制"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Left = 480
TabIndex = 1
Top = 2520
Width = 3975
End
Begin VB.Label Label1
Alignment = 2 'Center
BackColor = &H00800000&
BorderStyle = 1 'Fixed Single
Caption = " 云臺鏡頭 控制系統(tǒng)"
BeginProperty Font
Name = "Times New Roman"
Size = 26.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 1935
Left = 360
TabIndex = 0
Top = 360
Width = 4215
End
End
Attribute VB_Name = "FrmFace"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim intC As Integer
Private Sub Form_Load()
intC = 0
Timer1.Interval = 500
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
intC = intC + 1
If intC = 3 Then
Timer1.Enabled = False
Unload Me
FrmMain.Show
intC = 0
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -