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