method NAVHostCtrl.Create (AssemblyLocation as String, AssemblyName as String)
Creates/Loads the assembly giving fully qualified path of the assembly/file or/and the assembly/qualified name of the type to be created.

TypeDescription
AssemblyLocation as String A String expression that specifies the full path or UNC location of the loaded file that contains the manifest/component/assembly. Sample: "C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll"
AssemblyName as String A String expression that specifies the fully qualified name of the type, including its namespace but not its assembly. Sample: "System.Windows.Forms.TreeView"
ReturnDescription
NAVHostTypeA NAVHostType expression that specifies the type of the object being created, the same as value being returned by the IsCreated property. The return value can be one of the following:
  • 0/ NAVHostType_exNAVHostNothing,  The NAVHost control hosts nothing.
  • 1/ NAVHostType_exNAVHostControl,  The NAVHost component hosts an object of System.Windows.Forms.Control type.
  • 2/ NAVHostType_exNAVHostObject,  The NAVHost component hosts a general object.
The Create method loads the specified file ( AssemblyLocation ), and creates the giving type ( AssemblyName ). The assemblyLocation parameter of the Create method indicates the same value as AssemblyLocation property. The assemblyName parameter of the Create method indicates the same value as AssemblyName property. The Create method returns the type of the object being created, the same as IsCreated property returns the type of the object being created such as: NAVHostType_exNAVHostControl, if an object of System.Windows.Forms.Control type was created or NAVHostType_exNAVHostObject a generic object was created. The Host property returns the object being created and hosted by the NAVHost control. The Destroy method unloads the hosting control. 

There are three ways of loading/creating a manifest/component/assembly as listed:

If succeeded, ( the assembly is loaded and the object is created ), the 

If fails, the