Passing Values Between Forms... [message #80877] |
Tue, 10 December 2002 14:29 |
Sebastian
Messages: 10 Registered: July 2002
|
Junior Member |
|
|
Hi...
I'm trying to create a button which loads a new form, but the data block for the new form is filtered depending on the value in a text field in the original form.
Specifically, I have a form with a list of employees; when I click an employee ID, I want to open up a form whose database is filtered to include only values for that specific employee ID.
Is there an easy way to do this with PL/SQL, or otherwise?
Thank you!
|
|
|
|
Re: Passing Values Between Forms... [message #80892 is a reply to message #80877] |
Wed, 11 December 2002 22:57 |
priya
Messages: 108 Registered: February 2000
|
Senior Member |
|
|
in called form create userdefined parameters
create parameter list id in calling form
add all parameter which u want to send with the name of parameter created in called form.
open form with parameter list name.
this will pass parameter to another form..
u can use this parameter with parameter.parametername
|
|
|