📄 form2.frm
字号:
VERSION 5.00
Begin VB.Form Form2
BorderStyle = 1 'Fixed Single
Caption = "电脑彩票大奖号码产生器"
ClientHeight = 2145
ClientLeft = 3555
ClientTop = 2625
ClientWidth = 5085
ClipControls = 0 'False
BeginProperty Font
Name = "宋体"
Size = 13.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2145
ScaleWidth = 5085
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Left = 3930
Top = 1335
End
Begin VB.CommandButton Command1
Caption = "确 定"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 372
Left = 1968
TabIndex = 1
Top = 1620
Width = 1152
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "欢迎使用电脑彩票号码生成程序,祝你号运!"
BeginProperty Font
Name = "幼圆"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 624
Left = 708
TabIndex = 0
Top = 516
Width = 3672
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim t As Integer
Private Sub Command1_Click()
Unload Me
Form1.Show
End Sub
Private Sub Form_Load()
Timer1.Enabled = True
Timer1.Interval = 500
End Sub
Private Sub Timer1_Timer()
t = t + 1
If t >= 4 Then
Unload Me
Form1.Show
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -