Call Statement (Visual Basic)
Visual Studio 2010
Updated: January 2012
Transfers control to a Function, Sub, or dynamic-link library (DLL) procedure.
[ Call ] procedureName [ (argumentList) ]
You can use the Call keyword when you call a procedure. For most procedure calls, you aren’t required to use this keyword.
You typically use the Call keyword when the called expression doesn’t start with an identifier. Use of the Call keyword for other uses isn’t recommended.
If the procedure returns a value, the Call statement discards it.