📄 guodu.frm
字号:
VERSION 5.00
Begin VB.Form guodu
BackColor = &H80000009&
BorderStyle = 0 'None
ClientHeight = 8805
ClientLeft = 0
ClientTop = 0
ClientWidth = 10620
LinkTopic = "Form1"
ScaleHeight = 8805
ScaleWidth = 10620
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer2
Interval = 1000
Left = 4500
Top = 5925
End
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 930
Left = 8910
TabIndex = 4
Top = 7110
Width = 1065
End
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 100
Left = 1740
Top = 4305
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "正在生成模拟考题...."
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 5145
TabIndex = 3
Top = 690
Width = 2160
End
Begin VB.Label Label3
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 3885
TabIndex = 2
Top = 1920
Width = 1095
End
Begin VB.Label Label2
Height = 330
Left = 3900
TabIndex = 1
Top = 2250
Width = 5790
End
Begin VB.Label Label1
BackColor = &H8000000D&
Height = 330
Left = 3900
TabIndex = 0
Top = 2250
Width = 5790
End
End
Attribute VB_Name = "guodu"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
End
End Sub
Private Sub Form_Load()
guodu.BackColor = RGB(229, 232, 239)
Label2.BackColor = RGB(229, 232, 239)
guodu.Left = 0
guodu.Top = 0
guodu.Width = Screen.Width
guodu.Height = Screen.Height
Label1.Left = guodu.Width / 2 - Label1.Width / 2
Label2.Left = Label1.Left
Label3.Left = Label1.Left
Label4.Left = guodu.Width / 2 - Label4.Width / 2
End Sub
Private Sub Timer1_Timer()
Label3 = Form2.PB1.Value & "%"
If Form2.PB1.Value >= 100 Then
Form2.Left = 0
Timer1.Enabled = False
Unload Me
End If
End Sub
Private Sub Timer2_Timer()
Form2.Show
Form2.Left = 15360
Timer1.Enabled = True
Timer2.Enabled = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -