mart1n23
New Member
- Joined
- Oct 14, 2005
- Messages
- 36
Hi everyone.
I have some code, for making a Combo become toggle between visible and not visible when an option button is selected.
Here it is.
The code works great. My problem is, when i'm in the presentation, I select the option button, the combobox appears, but I cannot make a selection on the drop down list. When I click on the combobox, the next slide appears. I think I need to refresh the page after the combobox becomes visible, but I don't know how.
Please Help.
I have some code, for making a Combo become toggle between visible and not visible when an option button is selected.
Here it is.
Code:
Private Sub CommandButton22_Click()
If Slide4.OptionButton22 = False Then
Slide4.OptionButton22 = True
Slide4.ComboBox2.Visible = True
Else
Slide4.OptionButton22 = False
Slide4.ComboBox2.Visible = False
End If
End Sub
The code works great. My problem is, when i'm in the presentation, I select the option button, the combobox appears, but I cannot make a selection on the drop down list. When I click on the combobox, the next slide appears. I think I need to refresh the page after the combobox becomes visible, but I don't know how.
Please Help.