How do you reference and manipulate other forms that are part of a second project that's part of the solution you're working on?
The forms aren't showing up in intellisense even after I added the project.
Printable View
How do you reference and manipulate other forms that are part of a second project that's part of the solution you're working on?
The forms aren't showing up in intellisense even after I added the project.
make a references to your second project
go to add references, and add project output (that is if your othe project is a class dll and is able to reference it properly)
aha! I missed that in my brain-storming lol I resorted to taking the (only) form and putting it into the main project.
Would it be more managable to keep seperate projects? The second project is actually a stand-alone app that I'm integrating into project one.
if they are 2 seperate standalone apps then i would keep them seperately, however if you use the same forms, methods and so on in both projects, i would create a DLL project and put all the stuff in the dll project and reference the dll.