One APP and more Windows Forms Control Librarys

TheCatPrj2501

New member
Joined
Jun 23, 2018
Messages
1
Programming Experience
Beginner
Hello everybody,

Unfortunately I did not find it online or asked the wrong questions, I hope you can help me.

I am new to the world of C # and Visual Studio 2017.

I used to work with Boost in C ++ in Visual Studio 2010.

So I created a project in Windows Forms Control Library and created everything I needed to enter data about a Froms application and put my little program in there.

Then I created a second project as an application (main project) with a button.

Now I have:

After I added the project under, "Project -> Add Reference -> Browse".

Now I would like when I press in the application (main project) on my button, then the Forms

Application from the Windows Forms Control Library (Added Project).

If I conclude that firm, then I come back to the Froms main project.

Similar to a window switching
smiley_smile.gif


Great thanks for your help.


Manuel
 
Now I would like when I press in the application (main project) on my button, then the Forms

Application from the Windows Forms Control Library (Added Project).

That statement doesn't actually make sense. Are you saying that you want to display a form from the library? If so, go ahead. It's no different to displaying a form from the application. You just create the form instance and call Show or ShowDialog, just as always.
 
Back
Top Bottom