Visual Studio problem

Pianoman

Member
Joined
Jul 22, 2013
Messages
7
Programming Experience
Beginner
For some reason I can no longer start my program with debugging. It will start without debugging, but in looking at why it wasn't performing as expected, it appears that all textboxes on a form suddenly have the same name (which I thought was impossible). When I open the properties window and click on any textbox it shows as tbName - which is the correct name for the first textbox on the page. Can this be corrected or do I have to start again due to corruption?
 
In the Solution Explorer, click the Show All Files button. Expand the node for your form and then open the designer.vb file. That is the code generated by the designer in response to your visual instructions. You need to be careful what you do here but, if the designer messes things up, you can manually edit the code to fix it.
 
Back
Top