how to pass 2 variables from one form to other form
Answers were Sorted based on User's Feedback
Assalam-o-Alikum.
you can pass the value of two variable from form F1 to form
F2
First you have to create the two parameter on form F2 name
p1 and p2 and save the form.
then you go on to F1 and write tis code on button on text
item through which you want to send the parameter.
Declare
para ParamList;
Begin
para:=get_parameter_list('plist') /*plist can be replace by
any character*/
if not id_null(para) then
destroy_parameter_list('plist');
end if;
para:=create parameter_list('plist');
Add_Parameter(para,'P1',variable_1);
Add_Parameter(para,'P2',variable_2);
---after this you can add
call_form('F2');
--you can see the argument pass through form F1 to FORM F2.
end;
| Is This Answer Correct ? | 10 Yes | 7 No |
Answer / kris
Parameter list should be passed as argument in call_form
built in.
| Is This Answer Correct ? | 2 Yes | 0 No |
What are Most Common types of Complex master-detail relationships?
Is it possible to attach same library to more than one form?
Can we create two blocks with the same name in form 3.0 ?
What triggers are associated with the radio group?
what r the various types of reports
What is user exit.?
2 Answers IBM, Synergy, Zensar,
What is an LOV?
explain about content canvas views?
What is term? What is use of term?
how to hide the scroll bar in forms 6i
What is an Alert ?
What is the difference between flex mode and confined mode?