Question for the real tech lords.
Here is the issue, I have a program that needs to process one of several reports. All the reports are broken up into .net dll's (Assemblies) based upon the area the report displays (ie AP, AR ect..)
I want to do late binding to pull the required report instead of creating 20-30 different reports objects (one for each report).
In VB6 this would work using the 'CreateObject' on an ActiveX object, however as the dll's are .net Assemblies this does not work.
Does anyboby know how to do the same thing with .net Assemblies?
|