From a coding standpoint, those folders you make for your forms at design time in the solution explorer mean absolutely NOTHING.
The ability to create those folders and organize your forms and stuff, is simply a way to keep the solution in order while you are coding it. when you create a new folder, VS actually creates that folder on your hard drive (under the root of the project) and sticks the .vb files for the form into that directory.
When you compile your application, all those .vb files are compiled into the exe. The exe has no notion of the source code it was created from as far as how the files were organized before the compile was done.
I am with Shaggy and Medhak in that I really am unsure of what you are trying to accomplish
I'm not sure whether or not this is pertinent to the question, but what's the relationship (if there is one) between the folders & DLL's? The app I'm working with is one solution with 9 projects, organized as folders. One project is the .exe while the others are DLL's. I assumed (based solely on the evidence in my app) that organizing them into folders was part of the process of splitting the app into separate DLL's.
I'm not sure whether or not this is pertinent to the question, but what's the relationship (if there is one) between the folders & DLL's? The app I'm working with is one solution with 9 projects, organized as folders. One project is the .exe while the others are DLL's. I assumed (based solely on the evidence in my app) that organizing them into folders was part of the process of splitting the app into separate DLL's.
Yes what you are saying is correct, but that is at the top level of a solution. He is talking about folders you can create withing a project (not a solution) to organize your code. Check the screen shot, it shows 3 projects in the solution, but the vbdotnet project has folders to seperate its classes and forms. You can drag items between folders (even between projects) and it will move them on the hard drive (just dont drag a vb form into a C# project.. it will work, but it wont compile )