kcwallace
Centurion
I was wondering if there was a way to dynamically load a form with a function similar to the following:
Visual Basic:
function openform(formName as string) as form
dim f as new form
'some code here to open what ever form is named "formName"
return f
end function