標題:
[發問]
如何將OptionButton判斷改成TextBox判斷?
[打印本頁]
作者:
av8d
時間:
2012-7-16 17:06
標題:
如何將OptionButton判斷改成TextBox判斷?
On Error Resume Next
For I = 6 To 21
If Me.Controls("OptionButton" & I).Value = True Then
Set Ws = Sheets("" & I + 2006 & "")
If Ws Is Nothing Then
ThisWorkbook.Sheets.Add().Name = "" & I + 2006 & ""
Sheets("2012").Select
Cells.Copy Sheets("" & I + 2006 & "").[A1]
Sheets("" & I + 2006 & "").Select
Range("A1").Formula = I + 2006
Call test
Unload Me
Call ShowMsgBox
Else
Ws.Select
Range("A1").Formula = I + 2006
Call test
Unload Me
Call ShowMsgBox
End If
End If
Next
複製代碼
以上是判斷OptionButton的程式碼~如果我將OptionButton改成TextBox~且不需要判斷
直接捨去
For I = 6 To 21
If Me.Controls("OptionButton" & I).Value = True Then
直接判斷~該如何做?因為我修改後執行發現整個執行速度變得很慢~
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)