Hi,
I am using Visual Studio 2005.
Is there a setting in the IDE that I can change so I can watch mye form while changes is beeing made while I am debugging.(step by step, F8). Today is the form freezing while I am debugging.
Hi,
I am using Visual Studio 2005.
Is there a setting in the IDE that I can change so I can watch mye form while changes is beeing made while I am debugging.(step by step, F8). Today is the form freezing while I am debugging.
How can watch the windows form while debugging?
Theoblob
ReneeC
- Any overlap of Visual Studio on the application will cause paint events to be fired. Hence no overlap is possible. Keep the two seperate on the screen. Minimize both and have no overlap.
- Any mouse movement over the application will again cause events to fire which may cause things to be blocked. Again no mousing unless that is being debugged.
- Capturing the main thread with a break point will stop the message pump and event's like paint will not fire until control is returned...hence the application will appear to freeze.
- Its best to have a separate monitor, so mouse and Visual Studio debugging can occur on the opposite monitor. But if no monitor is possible 1/2 screen application 1/2 screen Visual Studio.
Hope this helps.