📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4272
ClientLeft = 252
ClientTop = 1416
ClientWidth = 7404
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4272
ScaleWidth = 7404
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Timer Timer1
Interval = 5000
Left = 3216
Top = 1944
End
Begin VB.Frame Frame1
Height = 4050
Left = 150
TabIndex = 0
Top = 60
Width = 7080
Begin VB.Image imgLogo
Height = 1080
Left = 168
Picture = "frmSplash.frx":000C
Top = 312
Width = 1956
End
Begin VB.Label lblCompany
AutoSize = -1 'True
Caption = "北京朗科科技发展有限公司"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 300
Left = 3360
TabIndex = 1
Top = 3372
Width = 3600
End
Begin VB.Label lblProductName
AutoSize = -1 'True
Caption = "电子警察拍照系统"
BeginProperty Font
Name = "楷体_GB2312"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 720
Left = 852
TabIndex = 3
Top = 1860
Width = 5868
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
Caption = "秦皇岛市公安交警支队"
BeginProperty Font
Name = "Arial"
Size = 18
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 2352
TabIndex = 2
Top = 696
Width = 3720
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_Click()
Unload Me
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = 27 Then
Unload Me
End If
End Sub
Private Sub Form_Unload(Cancel As Integer)
frmServer.Show
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub imgLogo_Click()
Unload Me
End Sub
Private Sub lblCompany_Click()
Unload Me
End Sub
Private Sub lblCompanyProduct_Click()
Unload Me
End Sub
Private Sub lblProductName_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -