A
aping
i wanna ask about how to create a form based on a string.
usually we create a form with this command:
-------------------------
dim frm as new frmMyForm
-------------------------
but i want to make something like this which is based on a string:
-------------------------
Dim sClassName as String
Dim frm as Form
sClassName = "frmMyForm"
frm = New sClassName
-------------------------
actually i've seen the answer in
http://www.dotnet247.com/247reference/msgs/38/192409.aspx, but i still
confuse how to use it, coz i'm a newbie in .NET
can someone who posted the answer (CJ Taylor or Herfried K. Wagner)or
someone else explain those function to me? becoz' when i paste the
code to my .NET Code, there is some error.
thanks
usually we create a form with this command:
-------------------------
dim frm as new frmMyForm
-------------------------
but i want to make something like this which is based on a string:
-------------------------
Dim sClassName as String
Dim frm as Form
sClassName = "frmMyForm"
frm = New sClassName
-------------------------
actually i've seen the answer in
http://www.dotnet247.com/247reference/msgs/38/192409.aspx, but i still
confuse how to use it, coz i'm a newbie in .NET
can someone who posted the answer (CJ Taylor or Herfried K. Wagner)or
someone else explain those function to me? becoz' when i paste the
code to my .NET Code, there is some error.
thanks