Click to See Complete Forum and Search --> : VB


February 10th, 2000, 03:49 AM
Well, i have some 10 VB projects each having some .bas, .cls and .dll files.
The VB projects have reference to the other DLLs, and hence when i change a DLL i have to change the other DLLs which 'refer' this DLL, so i try to have a PROJECT GROUP. But when i try to 'group build' all the DLLs ( whichis a better solution!) i see the references are set to project files(.vbp) istead of DLLs.
Can any one explain this??

Jose Redondo
February 11th, 2000, 03:11 AM
First you have to chech the binary compatibility option in your DLLs (tolls/project properties). doing this the GUID of your DLL will not change and you will be able to call this DLL without any problem. All that i say works ONLY if you donīt change the interface (the header of the public functions of the DLL), if you do that you have to recompile all the dependence tree (group build or cammand line compile script)

in hoc signo vinces