標題:
[發問]
[發問] 關於 OptionButton 循環核選問題
[打印本頁]
作者:
mark15jill
時間:
2013-2-4 16:01
標題:
[發問] 關於 OptionButton 循環核選問題
問題
若在環境中<Userform2>,點擊Button1 ,回到Userform1 ,但原先在Userform1所點擊的OptionButton1核選要怎取消?
有試著在Userform2內預先控制Userform1的Optionbutton1核選狀態消除,但似乎哪邊做錯。
麻煩各位大大教導,謝謝。
環境:
Userform1內
OptionButton1 <點選後開啟Userform2,並將Userform1隱藏>
OptionButton2 <點選後開啟Userform3,並將Userform1隱藏>
Userform2內
Button1 <點選後開啟Userform1,並將Userform2隱藏>
Userform3內
Button1 <點選後開啟Userform1,並將Userform3隱藏>
程式碼:(原先版本)
Userform1內Private Sub OptionButton1_Click()
If OptionButton1.Value = True Then
Me.Hide
UserForm2.Show
End If
End Sub
Private Sub OptionButton2_Click()
If OptionButton2.Value = True Then
Me.Hide
UserForm3.Show
End IfEnd Sub
Userform2內
Private Sub CommandButton1_Click()
Me.Hide
UserForm1.Show
End Sub
Userform3內
Private Sub CommandButton1_Click()
Me.Hide
UserForm1.Show
End Sub
作者:
GBKEE
時間:
2013-2-4 16:15
回復
1#
mark15jill
UserForm1
Option Explicit
Private Sub OptionButton1_Click()
If OptionButton1.Value = True Then
OptionButton1.Value = False
Me.Hide
UserForm2.Show
End If
End Sub
Private Sub OptionButton2_Click()
If OptionButton2.Value = True Then
OptionButton2.Value = False
Me.Hide
UserForm3.Show
End If
End Sub
複製代碼
作者:
mark15jill
時間:
2013-2-4 16:30
回復
2#
GBKEE
大大 謝謝教導...
小弟想得太深了ˇˇ 忘記單純Value 就可以解決。
還一值在那邊Optionbutton2.Checked=false ...QQ"
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)