📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form enter
BackColor = &H00C0C0C0&
BorderStyle = 0 'None
Caption = "welcome"
ClientHeight = 4110
ClientLeft = 0
ClientTop = 0
ClientWidth = 5310
ForeColor = &H8000000B&
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 274
ScaleMode = 3 'Pixel
ScaleWidth = 354
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 10
Left = 120
Top = 3720
End
Begin VB.PictureBox Picture1
BackColor = &H80000009&
Height = 375
Left = 1080
ScaleHeight = 315
ScaleWidth = 2835
TabIndex = 2
Top = 3240
Width = 2895
Begin VB.Label Label3
BackColor = &H00C00000&
Caption = " "
ForeColor = &H00C00000&
Height = 375
Left = -3000
TabIndex = 3
Top = 0
Width = 3000
End
End
Begin VB.Image Image1
Height = 2055
Left = 0
Top = 360
Width = 5895
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "系统启动中,请稍候……"
Height = 375
Left = 0
TabIndex = 1
Top = 2760
Width = 2295
End
Begin VB.Image imgTitleMinimize
Height = 195
Left = 6360
Picture = "Form1.frx":0000
Top = 120
Width = 195
End
Begin VB.Image imgTitleClose
Height = 195
Left = 6960
Picture = "Form1.frx":024A
Top = 120
Width = 195
End
Begin VB.Label lblTitle
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "基于试题库的自动组卷系统"
BeginProperty Font
Name = "Arial"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 240
Left = 5760
TabIndex = 0
Top = 960
Width = 2010
End
Begin VB.Image imgTitleLeft
Height = 450
Left = 5880
Picture = "Form1.frx":0494
Top = 0
Width = 285
End
Begin VB.Image imgTitleRight
Height = 450
Left = 6240
Picture = "Form1.frx":0BDE
Top = 0
Width = 285
End
Begin VB.Image imgWindowBottomLeft
Height = 450
Left = 6600
Picture = "Form1.frx":1328
Top = 0
Width = 285
End
Begin VB.Image imgWindowBottomRight
Height = 450
Left = 6960
Picture = "Form1.frx":1A72
Top = 0
Width = 285
End
Begin VB.Image imgTitleMain
Height = 450
Left = 5880
Picture = "Form1.frx":21BC
Stretch = -1 'True
Top = 480
Width = 285
End
Begin VB.Image imgWindowBottom
Height = 450
Left = 6240
Picture = "Form1.frx":2906
Stretch = -1 'True
Top = 480
Width = 285
End
Begin VB.Image imgWindowLeft
Height = 450
Left = 6600
Picture = "Form1.frx":3050
Stretch = -1 'True
Top = 480
Width = 285
End
Begin VB.Image imgWindowRight
Height = 450
Left = 6840
Picture = "Form1.frx":379A
Stretch = -1 'True
Top = 1560
Width = 285
End
End
Attribute VB_Name = "enter"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
MakeWindow Me
AlwaysOnTop Me, True
Image1.Picture = LoadPicture(App.Path & "\enter.jpg")
End Sub
Private Sub imgTitleClose_Click()
Unload Me
End
End Sub
Private Sub imgTitleLeft_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
DoDrag Me
End Sub
Private Sub imgTitleMain_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
DoDrag Me
End Sub
Private Sub imgTitleMinimize_Click()
Me.WindowState = 1
End Sub
Private Sub Cmdexit_Click()
End
End Sub
Private Sub Timer1_Timer()
Label3.Move Label3.Left + 40
If Label3.Left >= 0 Then
Timer1.Enabled = False
Unload Me
Unload Me
Load Formmain
Formmain.Show
End If
End Sub
Private Sub imgTitleRight_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
DoDrag Me
End Sub
Private Sub lblTitle_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
DoDrag Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -