Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link Par2: Passing Queues as Parameters (Named Queues) 1999-07-27 -- A. van Ieperen You do not have to pass the queue as a string paramater. Instead, use the name of
the TYPED queue from your include. e.g.:
Definitions:
MyQueueType QUEUE, TYPE
SomeField LONG
END
MyProcedure(MyQueueType PassQueue)
RETURN
You can then call the procedure with:
MyProcedure(MyQueue)
Inside the procedure you access the fields like:
PassQueue.SomeField =
Today is November 23, 2024, 2:12 am This article has been viewed 35212 times.
|
|