📄 form3.frm
字号:
VERSION 5.00
Begin VB.Form Form3
Caption = "考试规则"
ClientHeight = 3150
ClientLeft = 60
ClientTop = 390
ClientWidth = 4680
LinkTopic = "Form3"
ScaleHeight = 3150
ScaleWidth = 4680
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Caption = "返回"
Height = 615
Left = 3120
TabIndex = 2
Top = 1680
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "开始考试"
Height = 615
Left = 3120
TabIndex = 1
Top = 720
Width = 1215
End
Begin VB.Label Label2
Caption = "本次考试采用上机方式 答题结束后确定无误点击提交即可查看成绩 时间为45分钟"
Height = 1695
Left = 240
TabIndex = 3
Top = 960
Width = 1455
End
Begin VB.Label Label1
Caption = "考试规则:"
Height = 375
Left = 240
TabIndex = 0
Top = 360
Width = 1095
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim fs As File
Dim ts As TextStream
Dim t As String
path = "c:\TEXT"
If fso.FolderExists(path) = True Then fso.DeleteFolder (path)
fso.CreateFolder (path)
fso.CreateFolder (path & "\Word")
Form3.Hide
Form4.Show
End Sub
Private Sub Command2_Click()
Form2.Show
Form3.Hide
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -