TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Boblysan
NA
66
0
Debugging / Could really use some help
Apr 7 2004 5:29 PM
Good afternoon. The short version: When debuggign an application, how can I fidn out what problem is occuring if execution just stops, with no errors ever coming up? I have a calss which calls a public method in a different class to enable a timer. Basically, it works like this. Class1 Method1() { refToClass2.StartTimer(); } Class2 contains the following public method StartTimer() { tmrAutoStart.Enable = true; } When the code from Method1 execute, it does in fact call the StartTimer method, but upon attempting to enable the timer, execution just stops and never moves on to the tick event handler for my timer. I'm unsure of how to debug this further. I am setting break points at all of these points to see what is getting executed and what is not. The main thing that really confuses me is that the debugger just stops, no errors, app doesn't hang, nothing. Execution just stops. Any suggestions would be very much appreciated. Thank you all. Bob
Reply
Answers (
1
)
Help with Connection script
Whats a good way to...?