What do you do when you break compatibility on a common library used by many other libraries on your development machine?
What i usually do is:
For every dll that reference the broken one
Checkout dll
Checkout vbp project
Open vpb project with VB6 Ide
Click on References button
Uncheck MISSING reference and OK
Click on References button
Check references and OK
Click on Make dll
Close project
This can be a pita activity, when you have many Dll to recompile and it can be error prone because you could miss some Dll. I think this problem is more related to development machine; on our staging\production server we have build tools that fix the MISSING problem automatically.
What's your best practice to handle this common scenario on your local machine?