📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3165
ClientLeft = 60
ClientTop = 450
ClientWidth = 6735
ForeColor = &H000000FF&
KeyPreview = -1 'True
LinkTopic = "Form1"
ScaleHeight = 3165
ScaleWidth = 6735
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 100
Left = 2880
Top = 1200
End
Begin VB.CommandButton Command2
Caption = "停 止"
Height = 375
Left = 3720
TabIndex = 8
Top = 1800
Width = 1335
End
Begin VB.CommandButton Command1
Caption = "开 始"
Height = 375
Left = 1440
TabIndex = 7
Top = 1800
Width = 1215
End
Begin VB.TextBox Txt
Alignment = 2 'Center
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Index = 6
Left = 5040
TabIndex = 6
Text = "0"
Top = 240
Width = 735
End
Begin VB.TextBox Txt
Alignment = 2 'Center
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Index = 5
Left = 4320
TabIndex = 5
Text = "0"
Top = 240
Width = 735
End
Begin VB.TextBox Txt
Alignment = 2 'Center
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Index = 4
Left = 3600
TabIndex = 4
Text = "0"
Top = 240
Width = 735
End
Begin VB.TextBox Txt
Alignment = 2 'Center
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Index = 3
Left = 2880
TabIndex = 3
Text = "0"
Top = 240
Width = 735
End
Begin VB.TextBox Txt
Alignment = 2 'Center
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Index = 2
Left = 2160
TabIndex = 2
Text = "0"
Top = 240
Width = 735
End
Begin VB.TextBox Txt
Alignment = 2 'Center
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Index = 1
Left = 1440
TabIndex = 1
Text = "0"
Top = 240
Width = 735
End
Begin VB.TextBox Txt
Alignment = 2 'Center
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Index = 0
Left = 720
TabIndex = 0
Text = "5"
Top = 240
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()
Command1.Enabled = False
Timer1.Enabled = True
End Sub
Private Sub Command2_Click()
Timer1.Enabled = False
Command1.Enabled = True
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = 32 Then Command2_Click
End Sub
Private Sub Timer1_Timer()
Dim i As Integer
For i = 0 To 6
Txt(i).Text = Int(Rnd * 10)
DoEvents
Next
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -