M
Mike
Is it possible to create and display a form based on a string variable that
will be set at run-time?
In other words, instead of declaring a variable as a user-defined form
class:
Dim MyForm as New frmMyForm
is it possible to do something like
Dim sClassName as String
Dim MyForm as Form
sClassName = "frmMyForm"
MyForm = New sClassName
?
will be set at run-time?
In other words, instead of declaring a variable as a user-defined form
class:
Dim MyForm as New frmMyForm
is it possible to do something like
Dim sClassName as String
Dim MyForm as Form
sClassName = "frmMyForm"
MyForm = New sClassName
?