Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Oracle Form Builder: Switching between tabs in a form

i am building a form in oracle forms builder

i have a tabbed canvas

i need to know how to swap to the next tab when a button is pressed

so what do i program into the next-tab button??

like image 360
user109780 Avatar asked May 20 '09 07:05

user109780


1 Answers

Best way normally is to navigate to an item on the new tab page, e.g.

GO_ITEM('BLOCK_NAME.ITEM_NAME');

OR you can make the tab page topmost explicitly:

SET_CANVAS_PROPERTY('CANVAS_NAME', TOPMOST_TAB_PAGE, 'TAB_PAGE_NAME');
like image 164
Jeffrey Kemp Avatar answered Sep 23 '22 01:09

Jeffrey Kemp