Selecting Options in Option Groups With Command Button (1 Viewer)

Endojoe

Registered User.
Local time
Yesterday, 20:27
Joined
Apr 7, 2009
Messages
20
I have 5 option groups, several of them populate text box controls with standard verbiage in my form using the After Update event. There are a couple circumstances I want to create Command Buttons for that will select certain options in all the option groups in with a single click. Unfortunately the After Update Event will not fire in the option groups to fill the text boxes I need filled as well. Is there a way to force the after update event to fire after I place the value in the option groups with the command button?

Thanks in Advance
 

boblarson

Smeghead
Local time
Yesterday, 18:27
Joined
Jan 12, 2001
Messages
32,059
If they are all on the same form you can just call the after update event of each option group:
Code:
YourOptionGroupNameHere_AfterUpdate
YourOptionGroup2NameHere_AfterUpdate
 

Endojoe

Registered User.
Local time
Yesterday, 20:27
Joined
Apr 7, 2009
Messages
20
Bob thanks a million!! I can't believe I couldn't figure that out in my research leading up to my post....but for some reason I just couldn't seem to find a clear explanation of how to achieve such a simple thing anywhere I looked. You are a Saint among mortals. :D
 

Users who are viewing this thread

Top Bottom