|
Purpose | With Using you can assign a value to an InputScript parameter. Both a constant value and the name of a screen field are possible. In the called InputScript you need a Parameter command with the name specified in Using. |
Example | Pushbutton (toolbar) “Create” “CRE1″ Process=“CreateOneStep.txt” Using Currency = “USD” Using Amount = F[Amount2] On “Enter” Process=“CreateOneStep.txt” On “/11″ Fcode=“/0" Process=“CreateOneStep.txt” Here Currency gets the value “USD”, Amount gets the value of the field F[Amount2]. |
Format | Using pname = “Value”
Using pname = F[fieldname] |
Tips & Tricks |
|