Solved
Forum Discussion
tristaanogre
7 years agoEsteemed Contributor
The first parametre of "AddVariable" is the name of the variable
Change your code to
d = Sys.OleObject["Scripting.Dictionary"] d.Add("a", "Alphabet") d.Add("b", "Book") d.Add("c", "Coffee") Project.Variables.AddVariable("Dictionary", "Object") Project.Variables.Dictionary = d;
- sriram_sig7 years agoContributor
Thank you, works perfectly fine