I'm writing this code in VBScript, which I haven't used before in my life.
I wrote this: Replace (strContent, st, arr (k,i), 1)
And it gives me a "Can't Use Parentheses When Calling a Sub" problem. Can anyone please help?
I've tried searching online but nothing helped.
Thank you!
Found the answer thanks to Panayot Karabakalov.
We tried using a
Call
and doing it without parentheses:But nothing worked. The solution eventually was:
Thank you everyone for the quick and helpful responses! You guys never let us down.
See this article from Eric Lippert. Basically, when you use a procedure or function like this:
you must not use parentheses around the argument list. When you use the
Call
keyword or use the return value of a function in an assignment or a condition, then you must use parentheses around the argument list, e.g.: