All Questions
1 question
8
votes
2
answers
3k
views
Why does VBA / VBScript require "Set" prefix
When I set a variable to an object in VBA / VBScript, I always need to prefix the statement with "Set" such as: Set Dict = CreateObject("Scripting.Dictionary")
If I set a variable to a primitive or ...