Order of which reference for same event
If you have multiple references to the same control, how does VB
decide the order of which reference gets the event first?
So, for example: I have a textbox named txtMyText and I implement the textbox's LostFocus event. I also have a member variable: private WithEvents m_txtMyText as TextBox (which references txtMyText) and implement the LostFocus event for this too.
How does VB decide the order of which reference/method/implementation gets the LostFocus event first? Also, is the order guaranteed?
Note: This is a simplified version of what I am doing so it may not
make sense at first as to why I am doing it.
Thanks,
Chad