Re: value transfer

From: Acuna Munoz Cristian Alfredo <cracuna_at_anakena.dcc.uchile.cl>
Date: 2 Mar 2001 18:40:12 GMT
Message-ID: <97opec$9gv$1_at_sunsite.dcc.uchile.cl>


OracleBaby <hasan_d71_at_hotmail.com> wrote:
>How can I transfer a value from one form1 to other form2 and makes in form2
>a query.
>Thanks

Via global variables. In form1 you give value to the variable before to call form2:

:global.your_variable := value;
call('form2');

And inf form2 you simply invoke the global variable:

select 1
from table
where field = :global.your_variable;

-- 
 
Received on Fri Mar 02 2001 - 19:40:12 CET

Original text of this message