Board logo

標題: 如何控制指令按鈕次數?? [打印本頁]

作者: yueh0720    時間: 2010-10-25 17:57     標題: 如何控制指令按鈕次數??

指令按鈕名稱為 CommandButton1 要如何控制按鈕次數
ex:只能按1次就在不動作 或者 按3次就在不動作
重開excel 就重新由0開始計算
不知是否可行??

作者: oobird    時間: 2010-10-25 19:57

工作表模組
Private Sub CommandButton1_Click()
Static x
x = x + 1
'你要做的工作
If x = 3 Then CommandButton1.Enabled = 0
End Sub
---------------------------------------
This WorkBook模組
Private Sub Workbook_Open()
Sheet1.CommandButton1.Enabled = 1
End Sub
作者: yueh0720    時間: 2010-10-26 10:12

感謝版主賜教~




歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)