Is there a way I can load and use DLL files dynamically (i.e. loading and calling them by code at runtime) in VB.NET? This was an easy task in Vb6 using the GetObject function.
Printable View
Is there a way I can load and use DLL files dynamically (i.e. loading and calling them by code at runtime) in VB.NET? This was an easy task in Vb6 using the GetObject function.
Research or search for 'Assembly.Load' or 'Activator.CreateInstance'. Similiar questions have been asked and you should have no trouble finding help on the topic. You might even try searching for 'Plug-in' or 'Plugin'.
Thanks