Help listing controls on page VS2005

Capt_Ron

Active member
Joined
Apr 29, 2005
Messages
39
Programming Experience
1-3
This is probably a strange request, but....

I created a fairly large Wizard. I have literally hundreds of objects in it. In VS 2003 I could print part of the code behind page that defines the objects so I can search through it for issues (naming convention, etc...). But in 2005 they are not declared in the code behind page.

How can I generate a list of all the contol names I've used?:confused:

Thanks
Ron
 
I see this is going to replace "how do I transfer info between two forms" as the new most asked question :).

VS2005 creates a seperate file for the design generated code. To find it, in the solution explorer at the top click the "Show All Files" button. Then click the plus sign beside the file to expand. The design code will be in a file with a .Designer.vb extension (if the class file is named 'class1.vb' then the design code file will be named 'class1.Designer.vb').
 
um... Thank you, but I don't have a Show All Files Button. Is this available in ASP.NET?
Thanks
Ron
 
Last edited:
Back
Top