vote up 2 vote down star

Forgive me if the answer is obvious as it has been a long time since I have programmed vbscript.

Are there any avantages to using Call when calling a function in vbscript?

For example:

SomeFunction param1, param2

vs

Call SomeFunction (param1, param2)
flag

Dupe: stackoverflow.com/questions/479891/… – bzlm Feb 19 at 21:55
I would not count this as a dupe personally. VBScript and VB6 are different enough languages that it is important to keep discussion of the two separated (even if the answer is the same). Also with this question, someone will now get this answer from google. They might not from the other. – EBGreen Feb 19 at 21:57

4 Answers

vote up 6 vote down check

No, there is not.

link|flag
vote up 0 vote down

It really just depends on how much you like parenthesis. Coming from a c-family background, it looks incredibly odd to me to not have them.

link|flag
vote up 0 vote down

Call is usually used for subroutines and not functions, but either way there is no differences. However when it comes to functions you can retrieve a value return from the function, where as a subroutine can not. Example

result = SomeFunction("param1")

Function SomeFunction(someArg)
SomeFunction = someArg & "Hey There"
End Function

this would return "param1 Hey There" to the "result" value

result = SomeSub("param1")

Sub SomeSub(someArg)
SomeSub = someArg & "Hey There"
End Sub

but in this case "result" won't have any value, because subroutines can't do this.

link|flag
vote up 8 vote down

The difference as per MSDN -

To call a Sub procedure from another procedure, type the name of the procedure along with values for any required arguments, each separated by a comma. The Call statement is not required, but if you do use it, you must enclose any arguments in parentheses.

The following example shows two calls to the MyProc procedure. One uses the Call statement in the code; the other doesn't. Both do exactly the same thing.

Call MyProc(firstarg, secondarg)
MyProc firstarg, secondarg

Notice that the parentheses are omitted in the call when the Call statement isn't used.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.