Thanks for your response, which I will keep in mind. My current
problem is just doing it manually. The book is the 280-page "Working
with Microsoft Visual Studio 2005" which came in the VS 2005 box. I
used the VS to write VB Module code that correctly reads from my
databases and displays, but I have been unable to achieve all of Figure
2-1 in the book showing a tree view in Solution Explorer. My SolEx
tree diagram has a blank Solution Name on the header bar and a top line
that is my Project name line in bold-face. Without the non-bold-face
Solution root line as shown in the book diagram, I can't click on it to
get the Solution Properties. Am I required to have a Form, maybe?
OK, that book is intended mainly to extend VS with add-ins, macros, etc.
About your problem:
- Go to the "Tools", "Options" menu, "Project and Solutions" section, and
ensure that the "Always show solution" checkbox is checked (by default it is
not).
- To create a blank solution, you use the "File", "New Project" menu, "Other
Project Types", "Visual Studio Solutions" section, "Blank Solution" item.
The blank solution should appear in the Solution Explorer.
- To add a project to it, right-click on it, select "Add", "New Project".
Also, since projects always require a solution (although maybe hidden), you
can create a solution and project at the same time using the "File", "New
Project" menu, "Visual Basic", "Windows" section, any item.
Once you have a solution and a project, you can show their respective
properties using their "Properties" context menu entry.

Signature
Best regards,
Carlos J. Quintero
MZ-Tools: Productivity add-ins for Visual Studio
You can code, design and document much faster:
http://www.mztools.com
> Thanks for your response, which I will keep in mind. My current
> problem is just doing it manually. The book is the 280-page "Working
[quoted text clipped - 6 lines]
> Solution root line as shown in the book diagram, I can't click on it to
> get the Solution Properties. Am I required to have a Form, maybe?
Pete - 10 Mar 2006 15:14 GMT
That did it! Thanks much, Carlos.
- Pete