Home » Developer & Programmer » Forms » Calling a form from another form
Calling a form from another form [message #260060] Fri, 17 August 2007 05:41 Go to next message
yogibalu
Messages: 1
Registered: August 2007
Location: Chennai
Junior Member
Hi,

I am having two forms. In the 2nd form i am selecting some values(parameters) and those values should reflect in the first form.

How should i proceed with this?
Could anyone please help me out in this issue?



Regards,
Yogesh.
Re: Calling a form from another form [message #260624 is a reply to message #260060] Mon, 20 August 2007 08:48 Go to previous message
jowahl
Messages: 82
Registered: May 2006
Member
simplest way: user global variables.

in form A declare them

:GLOBAL.my_1st_parameter := 'A';
:GLOBAL.my_2nd_parameter := 'B';

in form B use them:

IF :GLOBAL.my_1st_parameter = 'A' THEN
...
END IF;

note: GLOBAL parameters are always type VARCHAR!

Previous Topic: problem of populating record group
Next Topic: Populate 2nd List while some value selected in First list
Goto Forum:
  


Current Time: Fri Sep 27 04:28:44 CDT 2024