Can you help me with a general program organization question?
I have a solution with 5 projects, from the startup project I can reference any of the 4 projects(changed to class libraries) and access the forms, But from what I can tell I can't call a form from the startup project.
Project A references Project B. For Project A to be able to compile, Project B must already be built. If Project B has a reference to Project A, then it has to wait for Project A to be built, which is waiting on Project B to be built, and so nothing can be built.
One thing you can do is create a General Library DLL that holds all of your common classes. This way, every other project can reference it and have access to all of the common types/forms/classes/etc... Then you can pass references of those types back and forth between all of your projects.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.