📄 摇奖机.frm
字号:
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 1 'Fixed Single
Caption = "摇奖机"
ClientHeight = 2385
ClientLeft = 5220
ClientTop = 4170
ClientWidth = 3510
Icon = "摇奖机.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 2385
ScaleWidth = 3510
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command4
Caption = "退出"
Height = 375
Left = 2040
TabIndex = 15
Top = 1800
Width = 975
End
Begin VB.CommandButton Command3
Caption = "重新开始"
Height = 375
Left = 480
TabIndex = 14
Top = 1800
Width = 975
End
Begin VB.CommandButton Command2
Caption = "停止"
Height = 375
Left = 2520
TabIndex = 13
Top = 1200
Width = 735
End
Begin VB.CommandButton Command1
Caption = "开始"
Height = 375
Left = 2520
TabIndex = 12
Top = 720
Width = 735
End
Begin VB.TextBox Text12
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2040
Locked = -1 'True
TabIndex = 11
Top = 1200
Width = 255
End
Begin VB.TextBox Text11
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1680
Locked = -1 'True
TabIndex = 10
Top = 1200
Width = 255
End
Begin VB.TextBox Text10
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
Locked = -1 'True
TabIndex = 9
Top = 1200
Width = 255
End
Begin VB.TextBox Text9
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 960
Locked = -1 'True
TabIndex = 8
Top = 1200
Width = 255
End
Begin VB.TextBox Text8
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 600
Locked = -1 'True
TabIndex = 7
Top = 1200
Width = 255
End
Begin VB.TextBox Text7
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 240
Locked = -1 'True
TabIndex = 6
Top = 1200
Width = 255
End
Begin VB.TextBox Text6
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2040
Locked = -1 'True
TabIndex = 5
Text = "0"
Top = 720
Width = 255
End
Begin VB.TextBox Text5
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1680
Locked = -1 'True
TabIndex = 4
Text = "0"
Top = 720
Width = 255
End
Begin VB.TextBox Text4
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
Locked = -1 'True
TabIndex = 3
Text = "0"
Top = 720
Width = 255
End
Begin VB.TextBox Text3
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 960
Locked = -1 'True
TabIndex = 2
Text = "0"
Top = 720
Width = 255
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 600
Locked = -1 'True
TabIndex = 1
Text = "0"
Top = 720
Width = 255
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 240
Locked = -1 'True
TabIndex = 0
Text = "0"
Top = 720
Width = 255
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "摇奖机"
BeginProperty Font
Name = "华文行楷"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 375
Left = 960
TabIndex = 16
Top = 120
Width = 1335
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Command1.Caption = "开始"
If Command1.Caption = "开始" Then
Do While DoEvents
Randomize (Time)
Form1.Text1.Text = Int(Rnd * 10)
Form1.Text2.Text = Int(Rnd * 10)
Form1.Text3.Text = Int(Rnd * 10)
Form1.Text4.Text = Int(Rnd * 10)
Form1.Text5.Text = Int(Rnd * 10)
Form1.Text6.Text = Int(Rnd * 10)
If Command1.Caption = "暂停" Then
Text7.Text = Text1.Text
Text8.Text = Text2.Text
Text9.Text = Text3.Text
Text10.Text = Text4.Text
Text11.Text = Text5.Text
Text12.Text = Text6.Text
GoTo 1
End If
Loop
End If
1:
End Sub
Private Sub Command2_Click()
Command1.Caption = "暂停"
End Sub
Private Sub Command3_Click()
Text1.Text = 0
Text2.Text = 0
Text3.Text = 0
Text4.Text = 0
Text5.Text = 0
Text6.Text = 0
Text7.Text = Empty
Text8.Text = Empty
Text9.Text = Empty
Text10.Text = Empty
Text11.Text = Empty
Text12.Text = Empty
End Sub
Private Sub Command4_Click()
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -