frmsplash.frm
来自「一个为公安系统接警中心控制软件,不错哦.」· FRM 代码 · 共 34 行
FRM
34 行
VERSION 5.00
Begin VB.Form frmSplash
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 5370
ClientLeft = 45
ClientTop = 45
ClientWidth = 7140
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "frmSplash.frx":0000
ScaleHeight = 358
ScaleMode = 3 'Pixel
ScaleWidth = 476
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Visible = 0 'False
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Dim sFile As String
sFile = App.Path & "\Login.Dat"
If Dir(sFile) <> "" Then
Set Me.Picture = LoadPicture(sFile)
End If
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?