GetType returning null

  • Thread starter Thread starter bill
  • Start date Start date
B

bill

Hi, I'm loading an exe from my program as follows

Assembly a = Assembly.LoadFrom(exePath);
Type fType = a.GetType(formName) // formName = frmMain.vb

however GetType returns null, the LoadFrom is fine. What actual string
value do i need to pass to GetType here assuming my form in my exe
is called frmMain.vb

Using VS2005 CF1.0
 
Back
Top