Problem accessing .dll methods,interfaces..
Hello everyone,
I was wondering how is it possible to access a referenced .dll file methods?..
I was having problems using
eWareBase TEST = new eWareBase();
so i used the following :
Type eWareInType = Type.GetTypeFromProgID("eWare." + InstallName);
eWareBase eWareObj = (eWareBase)Activator.CreateInstance(eWareInType);
I can get all methods for this eWareBase class but not for a different one called
eWarePackaging class..
Can anyone help?..
Do you want me to send you my dll file?..
Many thanks,
|