-
Are the common dll's in the windows system available in all languages?
In other words is the comdlg32.dll the same for c++ and VB?
If know that the ADO dll available for vb users, then I can use the same dll for C++?
If so, is there not a problem with data type compatibility?
Thanks.
Dan.
-
DAO Dlls and Comdlg32.dll are completely different.
Comdlg32.dll is a static C dll which for you in order to use will requre declare each function (or sub) of that DLL.
It is the same as using windows API.
DAO DLLs are activeX DLLs and require a reference from within your application. You use properties and methods of that DLL to get the functionality of it.