I have a class which have lot of enum defined in it. This class along with other classes(have some functionality) have been packaged in a project and I have created a dll for the project. There is another project where I need to call different methods and need to access the different enumerated constants. For some reason we need to use late binding. If I try to access a enumerated constant I am getting a blank value. On the other hand if I do an early binding things work perfectly fine. Is there a way by which I can access the enumerated constant while using late binding.
For e.g. If I directly try to use the constant adOpenDyanamic defined under CursonTypeEnum, without referencing to ADO, I get a blank value, whereas if I refer to ADO, I get a value of 2.
For e.g. If I directly try to use the constant adOpenDyanamic defined under CursonTypeEnum, without referencing to ADO, I get a blank value, whereas if I refer to ADO, I get a value of 2.