Xref: alice comp.databases.oracle.tools:27939
Path: alice!news-feed.fnsi.net!hammer.uoregon.edu!arclight.uoregon.edu!logbridge.uoregon.edu!msunews!not-for-mail
From: Scott Haley <haleysco@pilot.msu.edu>
Newsgroups: comp.databases.oracle.tools
Subject: Re: passing parameters in Oracle Forms
Date: Wed, 07 Jul 1999 17:27:50 -0400
Organization: Michigan State University
Lines: 25
Message-ID: <3783C656.303BF6E8@pilot.msu.edu>
References: <7m0fne$op9$1@nnrp1.deja.com>
Reply-To: haleysco@pilot.msu.edu
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-AUTHid: haleysco
X-Mailer: Mozilla 4.5 [en] (Win95; I)
X-Accept-Language: en

It sounds like in your situation (possibly) instead of using parameters you
may wish to just use global variables.  You can use these to pass data from
one form to another.  The syntax is as follows:

:global.myvar := 2;

You don't declare globals and then when you want to assign something to this
value you do it just as you would with a normal variable but you must place
the :global. infront.

Hope this helped.  Good Luck!

Scott

deleona@my-deja.com wrote:

> I am a new Forms developer.  I'm trying to pass parameters between
> forms.  I understand that you can pass parameters from a calling form by
> using a parameter list as an argument to the CALL_FORM built-in.
> However, how do you capture the parameters in the called form?
> Thanks in advance.
>
> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.

