InterviewSolution
| 1. |
How Do You Pass The Parameters From One Form To Another Form? |
|
Answer» To pass ONE or more PARAMETERS to a called form, the calling form must perform the following steps in a trigger or user named routine execute the create_parameter_list built-in function to programmatically. Create a parameter list to execute the ADD parameter built-in procedure to add one or more parameters list. Execute the call_form, New_form or run_product built_in procedure and include the NAME or id of the parameter list to be PASSED to the called form. To pass one or more parameters to a called form, the calling form must perform the following steps in a trigger or user named routine execute the create_parameter_list built-in function to programmatically. Create a parameter list to execute the add parameter built-in procedure to add one or more parameters list. Execute the call_form, New_form or run_product built_in procedure and include the name or id of the parameter list to be passed to the called form. |
|