Applies To: |
|
Summary: |
What format do I use to pass multiple parameters (which includes strings and integers) to the MsgRPC() function. |
Solution: |
The format for the MsgRPC function is:
MsgRPC(hMsg, Name, Arg, Mode); and the arguments to pass to the function must be separated by commas. To pass strings the string arguments must be enclosed in quotes ("") and use the string escape character (^) around strings enclosed within a string. If you do not enclose the string in quotes, then the string is only the first tag found. E.g. Passing an integer, a string then an integer again /* Passes 3 arguments to a remote function
called test */ The arguments could be n1=10 |
Keywords: |
Related Links
Attachments