frmsplash.frm
来自「完整的VB和单片机系统连接的源代码」· FRM 代码 · 共 224 行
FRM
224 行
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4665
ClientLeft = 45
ClientTop = 45
ClientWidth = 7215
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Moveable = 0 'False
ScaleHeight = 4665
ScaleWidth = 7215
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Visible = 0 'False
Begin VB.Timer Timer1
Left = 2640
Top = 4800
End
Begin VB.Frame fraMainFrame
BackColor = &H00808000&
Height = 4710
Left = -120
TabIndex = 0
Top = 0
Width = 7380
Begin VB.Image Image1
Height = 2640
Left = 360
Picture = "frmSplash.frx":0000
Stretch = -1 'True
Top = 720
Width = 2280
End
Begin VB.Label lblLicenseTo
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "使用权属于"
Height = 255
Left = 360
TabIndex = 1
Tag = "使用权属于"
Top = 240
Visible = 0 'False
Width = 6735
End
Begin VB.Label lblProductName
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "监控平台"
BeginProperty Font
Name = "宋体"
Size = 32.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FF00&
Height = 645
Left = 3120
TabIndex = 8
Tag = "产品"
Top = 1800
Width = 2640
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "升降机综合后备保护仪"
BeginProperty Font
Name = "宋体"
Size = 18
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FF00&
Height = 360
Left = 2640
TabIndex = 7
Tag = "公司产品"
Top = 1080
Width = 3750
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "95/98/2k/Xp平台"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 4365
TabIndex = 6
Tag = "平台"
Top = 2760
Width = 2640
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "版本05.05.25"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 5250
TabIndex = 5
Tag = "版本"
Top = 3120
Width = 1590
End
Begin VB.Label lblWarning
BackStyle = 0 'Transparent
Caption = " 警告 版权泰安市第二无线电厂所有,侵权必究"
Height = 195
Left = 240
TabIndex = 2
Tag = "警告"
Top = 4080
Width = 6855
End
Begin VB.Label lblCompany
BackStyle = 0 'Transparent
Caption = "公司 泰安市第二无线电厂"
Height = 255
Left = 4680
TabIndex = 4
Tag = "公司"
Top = 3720
Width = 2415
End
Begin VB.Label lblCopyright
BackStyle = 0 'Transparent
Caption = "版权 泰安市第二无线电厂"
Height = 255
Left = 4680
TabIndex = 3
Tag = "版权"
Top = 3480
Width = 2415
End
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Unload Me
End Sub
Private Sub Form_Load()
'lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
Timer1.Enabled = True
Timer1.Interval = 3000
End Sub
Private Sub fraMainFrame_Click()
Unload Me
End Sub
Private Sub Image1_Click()
fraMainFrame_Click
End Sub
Private Sub lblCompany_Click()
fraMainFrame_Click
End Sub
Private Sub lblCompanyProduct_Click()
fraMainFrame_Click
End Sub
Private Sub lblCopyright_Click()
fraMainFrame_Click
End Sub
Private Sub lblLicenseTo_Click()
fraMainFrame_Click
End Sub
Private Sub lblPlatform_Click()
fraMainFrame_Click
End Sub
Private Sub lblProductName_Click()
fraMainFrame_Click
End Sub
Private Sub lblVersion_Click()
fraMainFrame_Click
End Sub
Private Sub lblWarning_Click()
fraMainFrame_Click
End Sub
Private Sub Timer1_Timer()
Timer1.Enabled = False
Unload Me
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?