linking between forms [message #169355] |
Wed, 26 April 2006 07:05 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Grazien
Messages: 7 Registered: April 2006
|
Junior Member |
|
|
hi there,
As part of my uni coursework I'm creating a set of linked forms
Im not sure on how to link them together.
I think the way i want this to work is so that by clicking on buttons within the form they would make new forms appear.
Sorry if thsi is a bit trivial, I'm very muc ha noob to this,
thanks in advance,
Paul
|
|
|
|
Re: linking between forms [message #169365 is a reply to message #169357] |
Wed, 26 April 2006 07:57 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Grazien
Messages: 7 Registered: April 2006
|
Junior Member |
|
|
thanks for that, the gist of the situation is that i have numerous canvases, each holding different bits of information, but they're all within the same file.
I want to be able to move between canvases without tabs, im trying to figure out how to do this,
each canvas already includes tabs, but i want to include buttons that would move between the different canvases in the file without just using tabs.
There are four canvases and a single contents canvas that would include the buttons.
I'd like to be able to click on a button on any canvas and move to another page, in a similar fashion to buttons on a web site.
Sorry if i didn't make this clearer already lol, I'm really REALLY new to this.
Many thanks,
Paul
|
|
|
Re: linking between forms [message #169434 is a reply to message #169365] |
Wed, 26 April 2006 16:57 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Rose_250
Messages: 17 Registered: April 2006
|
Junior Member |
|
|
Hii,
as I understand, you want to link forms, using a button..
First, choose trigger WHEN-BUTTON-PRESSED,
Second, try this code, it may help you..
/* run_product code*/
begin
run_product(forms,'c:\windows\desktop\foldername\module',asynchronous, runtime, filesystem, ",");
exit_form;
end;
Note that foldername: is the folder in which you put all the forms you want to connect and they are in desktop , for example.
(You have to ensure the path of the folder..)
module: is the name of the form you want to open..
Hope thats exactly what you want..
|
|
|
|
|
Re: linking between forms [message #169970 is a reply to message #169904] |
Mon, 01 May 2006 02:47 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
Rose_250
Messages: 17 Registered: April 2006
|
Junior Member |
|
|
yeah, ensure that you write single quotation twice not double quotation ,then comma and then again single quotaion twice, without leaving space, it will comes like that ' ',' '
|
|
|