I have a solution with multiple projects. Both the projects have Forms.
Example
MySolution
|____________________ Project1 (Windows Form)
|____________________ Project2 (Also a Windows Form)
Now I want to call the Form in Project2 from the Form in Project1. Sort of going like this
using (Form2 f2 = new Form2(myFile))
{
//....
}
Moving Form2 into Project1 is not an option unfortunately.
What’s the best way to go about it.
Thanks
Reference Project2 in Project1, See MSDN – Project References