I have created a DLL that contains several forms. At run time I need to get all form names and forms from this DLL.
How can I do it? I can get the assembly, but I am confused how to get individual objects from it.
sFile = "LocalManagement.DLL"
oAssembly = System.Reflection.Assembly.LoadFrom(sFile)
How can I do it? I can get the assembly, but I am confused how to get individual objects from it.
sFile = "LocalManagement.DLL"
oAssembly = System.Reflection.Assembly.LoadFrom(sFile)