How do I open one form from another form [message #77852] |
Tue, 04 December 2001 05:01 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
P Kudos
Messages: 1 Registered: December 2001
|
Junior Member |
|
|
I want to build an app that uses multiple forms,
I have an initial menu form with buttons. When a button is clicked I want it to open and switch to another form.
Iam sure it's simple but all this is new to me!
----------------------------------------------------------------------
|
|
|
|
Re: How do I open one form from another form [message #77855 is a reply to message #77852] |
Tue, 04 December 2001 07:34 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
Ramaa
Messages: 7 Registered: December 2001
|
Junior Member |
|
|
In the when-button-pressed triger, try one of the following options.
Write
open_form('newformname') if you want to replace the current form with a new form.
If you want to open another form still having the old form not hidden, write
call_form('newformname',no_hide);
If you want to hide the current form then you write
call_form('newformname',hide);
----------------------------------------------------------------------
|
|
|