Is it possible to latebind an object based on a DLL without registering the DLL (assuming you know the path to the DLL)?
I have a ‘validation’ routing that I am planning, and it would be great to not have to ‘register’ DLLs on a users system in order for the validation to run. Potentially the validation DLLs may change, so registration is not really what I want.
I know that I could get around this using .NET but I don’t want to do this in .NET (at the moment).
Your thoughts appreciated.