linking canvas [message #84938] |
Thu, 13 May 2004 02:34 |
pinky
Messages: 26 Registered: May 2002
|
Junior Member |
|
|
how to link two canvas
suppose in my form
i have two canvas c1 and c2
having diff objects on them
then at runtime how i can
navigate b/w them
|
|
|
Re: linking canvas [message #84940 is a reply to message #84938] |
Thu, 13 May 2004 02:47 |
Himanshu
Messages: 457 Registered: December 2001
|
Senior Member |
|
|
Hi,
In a form you can have only One content Canvas,rest of them needs to be Stacked Canvas.
To navigate between them Just write SHOW_WINDOW('WINDOW NAME');
and SHOW_VIEW('CANVAS_NAME') and Go_item('ITEM NAME') (Item on the Canvas to which you need to navigate).
HTH.
Regards
Himanshu
|
|
|
Re: linking canvas [message #84941 is a reply to message #84938] |
Thu, 13 May 2004 04:04 |
mb sharma
Messages: 8 Registered: July 2002
|
Junior Member |
|
|
Hi,
there is no linking but navigation between items or blocks on these two canvases..
To navigate between them
write SHOW_WINDOW('WINDOW NAME');
and SHOW_VIEW('CANVAS_NAME') and
Go_item('ITEM NAME') or go_block('block_name')
or in tabbed canvases you can click on the canvases..
Regards
MBS
|
|
|
Re: linking canvas [message #85028 is a reply to message #84938] |
Mon, 24 May 2004 03:52 |
Anupam
Messages: 62 Registered: July 2001
|
Member |
|
|
basically pinky
u can place a item on different canvas or assign the canvas on different window its the only physical.
when u navigate from one item to another or one block to another block . if the other item is placed on different canvas then automatically that canvas is show and it ll navigate to the next item
but if u can also use the built in to navigate from one object to another object.
the built ins are
go_item('item_name');
go_record('record_number');
go_block('block_name')
go_form('form_name');
first_record;
next_record;
last_record;
previous_record;
up; (it ll navigate to same instance)
down; (it ll navigate to same instance)
next_form;
and so on
hope it ll help u
all the best
|
|
|