It was hard to figure out this, i searched in the internet but i didnt find a solution, i found a solution if you have something better or any comments plese tell me.
Code:
string formName="frmTest"; Type tForm = Type.GetType(Application.CompanyName + "." + formName); if (tForm != null) { Form f = (Form)Activator.CreateInstance(tForm); f.Show(); }
Comment