gregghoush
Nov 12th, 1999, 11:29 AM
Ive got a string "frmMyform" and i want to create a new frmMyform now, how do i do it using that string. (without a huge select case through the string) ?
This is what i want to do basically:
dim ofrm as form
set ofrm = new "frmMyform"
i dont want to:
select case String
case "frmMyform"
set ofrm = new frmMyform
This is what i want to do basically:
dim ofrm as form
set ofrm = new "frmMyform"
i dont want to:
select case String
case "frmMyform"
set ofrm = new frmMyform