Oztaco
Oztaco

Reputation: 3459

Corrupted windows form in visual studio

VS froze while I was using it, and now whenever I try to open it in the designer, it freezes again, and when I build and run I get no errors. I call the form from my program, THEN it freezes, so it is just That one form, nothing else. I can't post the code because it's 200+ lines, and my laptop can't connect to internet :(

Upvotes: 1

Views: 1731

Answers (1)

Mark Hall
Mark Hall

Reputation: 54552

Try deleting the .suo file associated with your project. A lot of times that will get corrupted and cause the problem that you have. I just noticed that you are able to open your project. Try putting a breakpoint on your InitializeComponent() for the form to see what component is causing your problem.

Upvotes: 1

Related Questions