user109780
user109780

Reputation: 63

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??

Upvotes: 5

Views: 9888

Answers (1)

Jeffrey Kemp
Jeffrey Kemp

Reputation: 60262

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');

Upvotes: 7

Related Questions