I have
Dim MyDict As Dictionary
at the top of a module so that it can be used by multiple functions. How do I enable the values in MyDict to remain in memory when I use
MyDict.Add appAccess.currentproject.Name, appAccess
so that I can use the values in MyDict in separate functions within...