vote up 5 vote down star

Hi,

Does anyone know a good way to debug errors in the Visual Studio Designer?

In our project we have tons of UserControls and many complex forms. For the complex ones, the Designer often throws various exceptions which doesn't help much and was wondering if there's some nice way to figure out what has gone wrong.

The language is C# and we're using Visual Studio 2005.

Thanks, Daisuke

flag

4 Answers

vote up 2 vote down check

http://msdn.microsoft.com/en-us/library/ms996457.aspx

link|flag
Great thanks fung! It was especially the "Starting Our Debugging Session" section that helped. – Daisuke Shimamoto Feb 7 at 14:52
vote up 0 vote down

Each one is different and they can sometimes be obscure. As a first step, I would do the following:

  • Use source control and save often. When a designer error occurs, get a list of all changes to the affected controls that have occurred recently and test each one until you find the culprit
  • Be sure to check out the initialization routines of the controls involved. Very often these errors will occur because of some error or bad dependency that is called through the default constructor for a control (an error that may only manifest itself in VS)
link|flag
vote up 0 vote down

I have had this happen many times and it is a real pain.

Firstly I'd suggest attempting to follow the stack trace provided by the designer, though I found that often simply lists a bunch of internals stuff that isn't much use.

If that doesn't work then try compiling and determining the exception from there. You really are flying blind which is the problem. You could then try simply running the code and seeing what exception is raised when you run it, that should give you some more information.

A last-gasp approach could be to remove all the non-generated code from the form and gradually re-introduce it to determine the error.

If you're using custom controls you could manually remove the generated code related to the custom controls as well if the previous method still results in an error. You could then re-introduce this step-by-step in the same way to determine which custom control is causing the problem, then go and debug that separately.

Basically as far as I can tell there's no real way around the problem other than to slog it out a bit!

link|flag
vote up 5 vote down

I've been able to debug some control designer issues by running a second instance of VS, then from your first VS instance do a "Debug -> Attach to Process" and pick "devenv".

The first VS instance is where you'll set your breakpoints. Use the second instance to load up the designer to cause the "designer" code to run.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.