其实不用全局变量,用静态变量更好,按钮代码改为:
Static cnt As Integer
cnt = cnt + 1If cnt < 6 Then
'原来的代码
Else
MessageBox.show("一天只能五次")
Next