HELP!!! Design elements disappeared

bsteiner0385

Member
Joined
Jul 23, 2007
Messages
10
Programming Experience
Beginner
I was working with some parts of my program... and closed if off... when returning, the code is all there, but the design views are missing... I apologize in advance for the horrible naming conventions... didnt think it would get so large... but the .vb is attached as a zip file if someone could please help...
 

Attachments

  • Form1.zip
    10.5 KB · Views: 12
It's broken. You have messed with the Designer generated code (Designer doesn't comment out code like here), which is not allowed and can give result such as this. The generated code that adds the configured controls to the forms Controls collection is missing.

With around 90 controls on the page, which is very many, you should also consider designing differently.

Btw, there is also a Form1.resx file that belongs to this designer form, but it won't change the fact that there is something wrong with the generated code.
 
Back
Top