VBobCat
Well-known member
Hello people,
I wrote a class that helps me to validate entries on textboxes and comboboxes.
The constructor takes the control to be validated as parameter, so the class can handle some of its events.
Then, each Form declares so many instances of it as the number of controls that require validation.
Since some controls' list of options depend on previous entries on other controls, the same methods on validating class are invoked in cascade, one time for each instance.
Is there a way for me to trace the stack of calls in order to identify to which particular instance belongs execution, when I freeze running in a step into one of these class methods?
Thank you very much.
I wrote a class that helps me to validate entries on textboxes and comboboxes.
The constructor takes the control to be validated as parameter, so the class can handle some of its events.
Then, each Form declares so many instances of it as the number of controls that require validation.
Since some controls' list of options depend on previous entries on other controls, the same methods on validating class are invoked in cascade, one time for each instance.
Is there a way for me to trace the stack of calls in order to identify to which particular instance belongs execution, when I freeze running in a step into one of these class methods?
Thank you very much.
Last edited: