Selecting Options in Option Groups With Command Button

Endojoe

Registered User.
Local time
Today, 17:45
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
 
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
 
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

Back
Top Bottom