📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BackColor = &H00000000&
BorderStyle = 0 'None
ClientHeight = 4620
ClientLeft = 210
ClientTop = 1365
ClientWidth = 6000
ClipControls = 0 'False
ControlBox = 0 'False
BeginProperty Font
Name = "隶书"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "frmSplash.frx":000C
ScaleHeight = 4620
ScaleWidth = 6000
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer2
Enabled = 0 'False
Interval = 2000
Left = -915
Top = 4170
End
Begin VB.Label Label3
Caption = "指导老师:周丹"
BeginProperty Font
Name = "幼圆"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 3960
TabIndex = 4
Top = 3360
Width = 1575
End
Begin VB.Label Label2
Caption = "学生:王韬"
BeginProperty Font
Name = "幼圆"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 3960
TabIndex = 3
Top = 3840
Width = 1095
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "医院管理系统"
BeginProperty Font
Name = "华文行楷"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 690
Left = 720
TabIndex = 2
Top = 450
Width = 4650
End
Begin VB.Label lblLicenseTo
BackStyle = 0 'Transparent
Caption = "使用权属于:***"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00008000&
Height = 210
Left = 255
TabIndex = 1
Top = 1485
Width = 3180
End
Begin VB.Label lblVersion
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Version 1.0"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000080FF&
Height = 180
Left = 255
TabIndex = 0
Top = 1695
Width = 990
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Const CompanyName = "沈阳市第*医院"
Private Sub Form_Activate()
Timer2.Enabled = True
End Sub
Private Sub Form_Click()
Unload Me
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
Unload Me
End Sub
Private Sub Form_Load()
lblLicenseTo.Caption = "使用权属于:" & CompanyName
Load frmMain '安装主程序
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
GetStatus "按任意键继续..."
End Sub
Private Sub Form_Unload(Cancel As Integer)
frmMain.Show '主程序显示
End Sub
Private Sub lblCopyright_Click()
Unload Me
End Sub
Private Sub Label3_Click()
End Sub
Private Sub lblLicenseTo_Click()
Unload Me
End Sub
Private Sub lblVersion_Click()
Unload Me
End Sub
Private Sub Timer2_Timer()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -