Can't see "Windows Form Designer Generated Code" in VS2005

  • Thread starter Thread starter v.maggs
  • Start date Start date
V

v.maggs

Folks,
I am developing a Visual Basic Windows application using Visual
Studio 2005. For some reason I do not see any of the code that is
normally generated by VB. Is there some setting/option I need to check
somewhere in the IDE?

Thanks,
Vint
 
Folks,
I am developing a Visual Basic Windows application using Visual
Studio 2005. For some reason I do not see any of the code that is
normally generated by VB. Is there some setting/option I need to check
somewhere in the IDE?

With the new availability of partial classes in VB2005, VS2005 now hides
its autogenerated code in partial designer classes that are by default
not shown.

In the Solution Explorer, the second (by default) icon in the icon bar
at the top should have a tooltip of 'Show All Files'. Click this, and
each item with a hidden designer file (eg a form) will have an expando +
next to it; click this to see the designer file(s).
 
Sweet! Thanks Larry

Larry said:
With the new availability of partial classes in VB2005, VS2005 now hides
its autogenerated code in partial designer classes that are by default
not shown.

In the Solution Explorer, the second (by default) icon in the icon bar
at the top should have a tooltip of 'Show All Files'. Click this, and
each item with a hidden designer file (eg a form) will have an expando +
next to it; click this to see the designer file(s).


--
Larry Lard
(e-mail address removed)
The address is real, but unread - please reply to the group
For VB and C# questions - tell us which version
 
Back
Top