Forum Discussion

Morgan's avatar
Morgan
Frequent Contributor
9 years ago
Solved

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...
  • HKosova's avatar
    9 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"