[RESOLVED] Lots and Lots O Forms.
Hi all,
I am starting off with my vb.net project and I know already that I am going to have alot of forms. I expect over 50. Now if I have all these forms in the same project, Is everything going to compile into my single exe?
How can I resolve this? I was thinking of adding new projects to my project and then setting them as class library. Then it creates dll's right?
Do I then refer to forms in that class library the same way as if they would be in the same project?
Thanks
Rudi
Re: Lots and Lots O Forms.
Application projects automatically have references to library projects in the same solution, so you can use the classes from your libraries in your application no problem. You still need to import namespaces if you don't want to have to qualify the class names though.
Re: Lots and Lots O Forms.
My project has 79 forms, 25 classes, 77 reports . The exe is currently 8628 kb.
Regards
Jorge