Hi
I would like to create a method for opening up a form by passing across a string.
e.g. Something along the lines of the below code.
Is this possible in C#?
Public void OpenForm (string formname)
{
formname myform = new formname();
myform.show();
}