I have a textbox on my form. I want the form which name is typed into the textbox (if exists) to open. How do I get this to happen?

vb.net Code:
  1. Dim frmName As String
  2.         Dim objFRM As New Form
  3.  
  4.         Try
  5.             frmName = tmp(1)
  6.             objFRM = CreateObject(frmName)
  7.         Catch ex As Exception
  8.             modgen_ErrorLog(ex.Message.ToString)
  9.         End Try
  10.  
  11.         Try
  12.             objFRM.show
  13.         Catch ex As Exception
  14.             modgen_ErrorLog(ex.Message.ToString)
  15.         End Try
With that code I get this error:
"Cannot create ActiveX component"