Insatiate form from another project

  • Thread starter Thread starter Stephen
  • Start date Start date
S

Stephen

I am fairly new to .net winform programming. How do I open an instance
of a form in a different project/namespace? I assume I have to create
a ref to the namespace the other form is in but I am unsure how to do
this.
 
Stephen said:
I am fairly new to .net winform programming. How do I open an instance
of a form in a different project/namespace? I assume I have to create
a ref to the namespace the other form is in but I am unsure how to do
this.


Add a reference to the project ("Project" -> "Add reference...") and import
the namespace which contains the form class ('Imports <namespace>').
 
Back
Top