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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Event Triggering Order

Status
Not open for further replies.

0CODE

Programmer
Feb 8, 2004
63
CA
quick question, is there any way you can set the order of events triggering/change it somehow? Sounds confusing but i have 2 events - and in both they have some of the same controls in both of them, yet i need 1 of them to trigger before the other in order to get the correct result.

thanks
 
Explain a bit more on what you are trying to do, eg, what controls and events you want triggered when.
 
basically i have 2 events. in those 2 events they handle the same control

ex:

func1("") handles control1.click
func2("") handles control1.click

I would like func2 to fire before func1, because func1 will fire before func2.
 
Why don't you take the event handling off of one of them. Then it will fire just one event. Then when it fires, call the other routine.
 
there are multiple controls, not just the 1 control and there are some of the same controls handled in func1 & func2, but there are also events handled that aren't in both.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top