Because .Net Forms are NOT ActiveX components.
And what is this anyway? Why you need so cumbersome method of opening forms?
You can probably have a string collection of your forms names and open an appropriate form instance based on user input but I still fail to see any use for that? It's impractical for a real user interface since users tend to make mistakes and if it's simply to see whether it would work then the answer is no, it wouldn't.
P.S. Well, there's still a way to do it:
vb Code:
Dim asm = System.Reflection.Assembly.GetExecutingAssembly
Dim myTypes As Type() = asm.GetTypes()
Dim frm As Form
For Each t As Type In myTypes
If t.IsSubclassOf(GetType(System.Windows.Forms.Form)) AndAlso TextBox1.Text = t.Name Then
frm = CType(Activator.CreateInstance(t), Form)
frm.Show()
End If
Next