1

I am trying to use Scripting.Dictionary in Excel VBA and was just wondering if anyone knows if it is single or multi threaded?

Thanks

Community
  • 1
  • 1
Bosco
  • 23
  • 2
  • VBA is a single-threaded environment. What are you asking? –  Oct 23 '13 at 11:30
  • 1
    But that doesn't mean that Scripting.Dictionary is, which is what OP is asking. – Bathsheba Oct 23 '13 at 11:31
  • multitheading can mean many things so a better explanation of what he wants to know may get him an answer. I dont understand his question. –  Oct 23 '13 at 11:32

1 Answers1

1

You don't need to worry about the threading model of Scripting.Dictionary in VBA, as VBA runs in a single threaded apartment.

See Multi-threading in VBA

Community
  • 1
  • 1
Bathsheba
  • 231,907
  • 34
  • 361
  • 483