How to determine order of events fired

Posts   
 
    
erichar11
User
Posts: 268
Joined: 08-Dec-2003
# Posted on: 08-Feb-2006 18:55:23   

This is a general question, one of the problems I have when using new controls is understanding what order and when events are fired. I'm currently having a problem with the new login control in vs 2005. The documentation doesn't seem to be adaquate (or I can't seem to find the right docs) and I'm trying to understand the order of events being fired. My question, is how do you guys determine this. Thanks.

alexdresko
User
Posts: 336
Joined: 08-Jun-2004
# Posted on: 08-Feb-2006 22:18:38   

erichar11 wrote:

This is a general question, one of the problems I have when using new controls is understanding what order and when events are fired. I'm currently having a problem with the new login control in vs 2005. The documentation doesn't seem to be adaquate (or I can't seem to find the right docs) and I'm trying to understand the order of events being fired. My question, is how do you guys determine this. Thanks.

If the docs don't show the order, add a handler and set a breakpoint within each event in the login control. F5 that sucker and take notes..

For the record, I had the same problem with the login control.

pilotboba
User
Posts: 434
Joined: 05-Aug-2005
# Posted on: 09-Feb-2006 16:22:17   

alexdresko wrote:

If the docs don't show the order, add a handler and set a breakpoint within each event in the login control. F5 that sucker and take notes..

There's alot in VS that Visual FoxPro didn't have. But, this is one that surprised me. In VFP debugger has what they call "Exception Tracing". You chould just choose what exceptions you wanted to trace and it would log them as they were fired.

BOb