Private Sub CommandButton2_Click()
Dim mycheckbox1 As MSForms.CheckBox
aois = ActiveSheet.Range("c1").CurrentRegion.Rows.Count
For gosj = 1 To aois
With Controls("Checkbox" & gosj)
If .Value = True Then
Label1.Caption = "現在核選:" & .Name
End If
End With
Next
End Sub作者: mark15jill 時間: 2012-10-19 09:20 標題: 請教 關於 程式開頭 的相關疑惑(承接 CheckBox 核選問題)
想請問
一般而言
Private Sub UserForm_Initialize()
End Sub
為 初始狀態的時候的狀態~
或