Bosco
Bosco

Reputation: 23

Is scripting.dictionary multithreaded?

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

Upvotes: 1

Views: 91

Answers (1)

Bathsheba
Bathsheba

Reputation: 234705

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

Upvotes: 1

Related Questions