Morgan
10 years agoFrequent Contributor
Type Mismatch Error
I'll preface this with "I'm sure I'm doing something dumb".... ;) I am just trying to feed in multiple variables from one script to another and am receiving a "Type Mismatch" error when I run Ru...
- 10 years ago
In VBScript, to call procedures with multiple parameters, you need to use the Call keyword OR omit the parentheses around the parameter list:
Call Join("a", "b")
Join "a", "b"