Windows Form Designer Generated code

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

In VS 2003 this used to be visible within each form.... where did they put
this code in VS2005 ?
 
In VS 2003 this used to be visible within each form.... where did they put
this code in VS2005 ?

It's in the MyForm.Designer.Vb file.

The easiest way to find it is to open the solution explorer tab, and
press the button at the top of tab that shows all files. Then press
the [+] button next to the desired form to expand the file choices.
Double click the .Designer.Vb file and you should be set.

Thanks,

Seth Rowe
 
The new 2005 designer takes advantage of the new partial classes featuires
of the 2.0 framework so the generated code is kept in a separate file as
rowe says.
 
Back
Top