joe_2
11 years agoContributor
String to object (or code snippet)
I want to take a bunch of variables, concatenate them into a single string variable, then use that string variable as if it were a code snippet. in VBScript, thus: a = "Sys.Process(""MyProce...
- 11 years agoI am not an expert in VBS, but I think following should work:
myCode = "Call " & a & ".findchild(" & b & "," & c & ",10).Click(X,Y)"
Execute( myCode )