Parameter List [message #79536] |
Thu, 20 June 2002 06:16  |
Nishant
Messages: 20 Registered: August 2001
|
Junior Member |
|
|
There are two forms Form1 and Form2.
i have written following code on push button of Form1.
call_form(form2,no_activate,no_replace,no_query_only,param_list);
now where should i write a code on form2 to get the values of parameter list 'Param_list'? and how?
|
|
|
Re: Parameter List [message #79545 is a reply to message #79536] |
Thu, 20 June 2002 20:41  |
mani
Messages: 105 Registered: September 1999
|
Senior Member |
|
|
hai nishant.....
you should have parameter objects(objects - which you can see in
object navigator) in the form2 in the order as you pass from
form1.
and code to recive the parameters you can write anywhere in the
form2.ex.in pre-form.
am giving an example for you......
:BLK_TCN.srv_cat := :parameter.tcn_srvcat;
:BLK_TCN.net_ft := :parameter.tcn_netft;
:BLK_TCN.jur_code := :parameter.tcn_jcode ;
the left sides are text items in form2....
the right sides are parameter object u created in form2....hope
you got it.....
mani
|
|
|