!! Main dictionary enumerator (_NewEnum) returns dictionary keys, not values. Change for compatibility reasons with Scripting. Dictionary and Application.Dictionary. Check you old code for next construction:
For Each Item In Dictionary
'do something with the key
Next
and use next code with new versions to enumarate dictionary items:
For Each Item In Dictionary.Items
'do something with the key
Next
Version 1.1.6, 11.5.2010
New HoldLock and WaitForUnlock parameters for Lock method.
Solved hangup problem with Lock and Unlock methods in dictionary installed as COM+ application.
New synchronization method for Lock/Unlock methods and several threads of one process calling the methods.