form1.frm
来自「一个用VB写的考试系统」· FRM 代码 · 共 51 行
FRM
51 行
VERSION 5.00
Begin VB.Form Form3
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 3480
ClientLeft = 4755
ClientTop = 4260
ClientWidth = 7065
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3480
ScaleWidth = 7065
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 1000
Left = 3600
Top = 2880
End
Begin VB.Image Image1
Height = 2520
Left = 1320
Picture = "Form1.frx":0000
Stretch = -1 'True
Top = 600
Width = 5505
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Me.Left = Screen.Width / 2 - Me.Width / 2
Me.Height = Screen.Height / 2 - Me.Height / 2
Image1.Left = 0
Image1.Top = 0
Image1.Width = Me.Width
Image1.Height = Me.Height
Form2.Show
Form1.Show
End Sub
Private Sub Timer1_Timer()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?