how to reference a dll programmatically

krispaks

Member
Joined
Jan 22, 2007
Messages
17
Programming Experience
1-3
id like to reference a dll file programmatically.

id like to create an instance of a certain object from a different dll but id like to reference that dll programmatically.

here is my scenario... id like to select a dll file then load that file so i could get the objects inside it (CSLA objects). then i will select an object... after selecting an object i will select a csv or xls file (whose values are converted to a dataset)... inside those files are values for the properties of the object... and i would like to map the values from the dataset and the properties of the object...

need some help...
 
i was already able to nvoke methods from within the object itself...

im using a csla business object(bo). inside csla objects there is a brokenrulescollection object. this object tracks the broken rules inside your bo. now after invoking a method (specifically a set method of a property) i want to access brokenrulescollection so i could count how many rules were broken... how do i do this??? tnx...
 
Back
Top