I have created a C# DLL that has some forms in it. ( I needed it to be a DLL, not a Windows Application.)
How can I run it as a Windows App? Should I create another app and load it? How? What do I need to learn to do that?
please let me know if I should explain more about my question.
I have created a C# DLL that has some forms in it. ( I
Share
If you’re using VS 2008:
First, create a Windows Forms Application project. You can delete the default form that’s created (Form1.cs) if you don’t plan to use it.
In the Solution Explorer, right-click on the References and select Add Reference. This is the point where you add your custom designed C# DLL.
Now open Program.cs, and in make the following change:
If the DLL contains disconnected forms, you’ll probably need to add a class in the winforms project to coordinate the forms behavior.