VB打字游戏源码,更适合初学者
使用于初学者吧!
Private Sub Command5_Click()
Static blnprocessing As Boolean
If blnprocessing Then
blnprocessing = False
Command5.Caption = "暂停"
Timer1.Enabled = True
Timer2.Enabled = True
Label5.Visible = True
Label6.Visible = True
Else
Command5.Caption = "继续"
blnprocessing = True
Timer1.Enabled = False
Timer2.Enabled = False
Label5.Visible = False
Label6.Visible = False
End If
End Sub
Private Sub Command5_Click()
Static blnprocessing As Boolean
If blnprocessing Then
blnprocessing = False
Command5.Caption = "暂停"
Timer1.Enabled = True
Timer2.Enabled = True
Label5.Visible = True
Label6.Visible = True
Else
Command5.Caption = "继续"
blnprocessing = True
Timer1.Enabled = False
Timer2.Enabled = False
Label5.Visible = False
Label6.Visible = False
End If
End Sub
110.65KB
文件大小:
评论区