Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Which event(s) do I use to check current status before executing code

Status
Not open for further replies.

mulligh

Technical User
May 8, 2001
97
0
0
US
I have a combo box with a number of options. When the option changes to "Catalog" I want to run some code but only if the current option was set to "Review". Which event properties do I use to check the value of the current option vs. the changed option? Thanks for your help.
 
there's no automatic save buffer in a combobox, so in the onChange event of the combobox, you'll have to write some code that saves the previous result, and in the afterUpdate event, you will need to look at the saved result and proceed accordingly

--------------------
Procrastinate Now!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top