Hello,
Website with how to use the Free Form...
http://search400.techtarget.com/tip/0,289483,sid3_gci1220190,00.html#
*********************
To do a program or procedure call in /Free, you must use a prototyped call. Although this may initially seem like more effort, it's really pretty straightforward once you understand how to set it up. It has some advantages, and is the modern way of calling a program or procedure.
<pre>CALLP SomeProcedure(Parameter1: Parameter2);</pre>
You can even omit the CALLP operation code, as it isn't necessary.
<pre>SomeProcedure(Parameter1: Parameter2);</pre>
And it allows you to assign the return value of a procedure to a variable, making for a cleaner syntax:
<pre>SomeVariable = SomeProcedure(Parameter1: Parameter2) ;</pre>
CWC
Last Wiki Answer Submitted: August 18, 2008 2:45 pm by Tpinky4,165 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.