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>').
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top