Hello

I have an windows form with two button, i have converted this windows form to an dll. The dll is here

namespace projdll
{
    public partial class abc : Form
    {
        public int i = 0;
        public abc()
        {
            InitializeComponent();

        }


        private void button1_Click(object sender, EventArgs e)
        {
            MessageBox.Show("BUTTON 1");
        }

        private void button2_Click(object sender, EventArgs e)
        {
            MessageBox.Show("BUTTON 2");
        }
    }

Now in other application i add reference to this dll dynamically using assembly.loadfrom() . I hav 2 ques

1) I need to know the name of the class in dll and create an object for it. Name of only this form class. In win app we will hav others class like program.cs, resources.cs etc exclude these classes.
2) Need to dynamically create object for windows form class and call show() method to run the app in dll

Thank You

1) The name of the form is projdll.abc 2) You'll want to read this thread.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.