Call

Takes a variable number of parameters

Description:

Starts a Procedure in the same thread, no different than calling the Public Method directly by name, but in this case the name of the Public Method is the first parameter that could be dynamically set.

Usage:

Procedure, [...Public Method Parameters...]

Notes:

Optional additional parameters are the input parameters to the Public Method. The number of input parameters from the Call command must match the number of input parameters defined in the Public Method, or if the input parameters defined in the Public Method is set to *, the one parameter must be the name of a valid Query name, or left blank to use the current Work Query.

Examples:

Call "Proc.MyPublicMethod", Route, Cities, Countries
Call "Proc.MyPublicMethod", "Me.MyQuery"
Call "Proc.MyPublicMethod"