Toggle button unpressed

G

Guest

Hello,

I have four toggle buttons in an option group that performs different
procedures when the option group is clicked. After the procedure runs, I
would like the toggle button to unpress. How can I do this?

Thanks!
 
A

Allen Browne

If you don't want any of the options in the group selected, you could assign
Null to the group, e.g.:
Me.[MyGroup].Value = Null
 
G

Guest

I want the group to be selected. I just want the appearance of the toggle to
be unpressed after the procedure is run. Is this possible?

Thank you for your help!

Allen Browne said:
If you don't want any of the options in the group selected, you could assign
Null to the group, e.g.:
Me.[MyGroup].Value = Null

--
Allen Browne - Microsoft MVP. Perth, Western Australia

Reply to group, rather than allenbrowne at mvps dot org.

RatherBeeHome said:
Hello,

I have four toggle buttons in an option group that performs different
procedures when the option group is clicked. After the procedure runs, I
would like the toggle button to unpress. How can I do this?

Thanks!
 
T

tina

at the end of the procedure, set the value of the option group control
(*not* the toggle buttons) to Null, as

Me!OptionGroupControlName = Null

hth
 
A

Allen Browne

Not sure I understand.

You want the group to be the current control?
It will still have focus at that point.

--
Allen Browne - Microsoft MVP. Perth, Western Australia

Reply to group, rather than allenbrowne at mvps dot org.

RatherBeeHome said:
I want the group to be selected. I just want the appearance of the toggle
to
be unpressed after the procedure is run. Is this possible?

Thank you for your help!

Allen Browne said:
If you don't want any of the options in the group selected, you could
assign
Null to the group, e.g.:
Me.[MyGroup].Value = Null

--
message
Hello,

I have four toggle buttons in an option group that performs different
procedures when the option group is clicked. After the procedure runs,
I
would like the toggle button to unpress. How can I do this?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top