📄 frm_splash.frm
字号:
VERSION 5.00
Begin VB.Form frm_Splash
BorderStyle = 0 'None
ClientHeight = 3465
ClientLeft = 210
ClientTop = 1365
ClientWidth = 5835
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frm_Splash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3465
ScaleWidth = 5835
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "使用单位"
Height = 180
Left = 2136
TabIndex = 0
Top = 2292
Width = 720
End
Begin VB.Image Image1
Height = 3465
Left = 15
Picture = "frm_Splash.frx":000C
ToolTipText = "按任意键或单击继续"
Top = 0
Width = 5835
End
End
Attribute VB_Name = "frm_Splash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
Private Const SWP_NOSIZE = &H1
Private Const SWP_NOMOVE = &H2
Private Const HWND_TOPMOST = -1
Private Const HWND_NOTOPMOST = -2
Private Sub Form_KeyPress(KeyAscii As Integer)
Unload Me
End Sub
Private Sub Form_Load()
SetWindowPos Me.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE Or SWP_NOSIZE
Label1 = GetSetting(App.title, "Options", "user", "沈阳市第七人民医院高级医学美容院")
Image1.Move 0, 0
Me.Width = Image1.Width
Me.Height = Image1.Height
Label1.Left = Image1.Width - Label1.Width - 140
Label1.Top = Image1.Height * 2290 / 2772
End Sub
Private Sub Image1_Click()
frm_main.Show
Unload Me
End Sub
Private Sub Label1_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -