?? frmsplash.frm
字號:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 3870
ClientLeft = 255
ClientTop = 1410
ClientWidth = 5760
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3870
ScaleWidth = 5760
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Height = 3810
Left = 20
TabIndex = 0
Top = 0
Width = 5640
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "測繪儀器通訊程序"
BeginProperty Font
Name = "宋體"
Size = 32.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 645
Left = 120
TabIndex = 3
Top = 1800
Width = 5280
End
Begin VB.Label Label2
Caption = "二00六年一月"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 3600
TabIndex = 2
Top = 3360
Width = 1815
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "版本"
BeginProperty Font
Name = "宋體"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 300
Left = 2040
TabIndex = 1
Top = 2760
Width = 645
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 Form_KeyPress(KeyAscii As Integer)
Unload Me
End Sub
Private Sub Form_Load()
lblVersion.Caption = "版本 :" & App.Major & "." & App.Minor & "." & App.Revision
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub imgLogo_Click()
Unload Me
End Sub
Private Sub Label1_Click()
Unload Me
End Sub
Private Sub Label2_Click()
Unload Me
End Sub
Private Sub Label3_Click()
Unload Me
End Sub
Private Sub Label4_Click()
Unload Me
End Sub
Private Sub lblCompany_Click()
Unload Me
End Sub
Private Sub lblCopyright_Click()
Unload Me
End Sub
Private Sub lblVersion_Click()
Unload Me
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -