📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 1 'Fixed Single
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 45
ClientTop = 330
ClientWidth = 6780
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3195
ScaleWidth = 6780
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "开始"
Height = 255
Left = 5040
TabIndex = 7
Top = 1080
Width = 855
End
Begin VB.TextBox Text1
Height = 375
Index = 7
Left = 5880
TabIndex = 6
Top = 0
Width = 735
End
Begin VB.TextBox Text1
Height = 375
Index = 6
Left = 5040
TabIndex = 5
Top = 0
Width = 735
End
Begin VB.TextBox Text1
Height = 375
Index = 5
Left = 4200
TabIndex = 4
Top = 0
Width = 735
End
Begin VB.TextBox Text1
Height = 375
Index = 4
Left = 3480
TabIndex = 3
Top = 0
Width = 735
End
Begin VB.TextBox Text1
Height = 375
Index = 3
Left = 2640
TabIndex = 2
Top = 0
Width = 735
End
Begin VB.TextBox Text1
Height = 375
Index = 2
Left = 1800
TabIndex = 1
Top = 0
Width = 735
End
Begin VB.TextBox Text1
Height = 375
Index = 1
Left = 960
TabIndex = 0
Top = 0
Width = 735
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
For i = 1 To 7
A = Fix(Rnd * 49) + 1
Text1(i).Text = A
Next i
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -