Total Pageviews

4505

How to Hide 'Window' Menu From Oracle Forms


A "Magic" menu item can be created to replace the default system menu. Consequently, it can be hidden using the SET_MENU_ITEM_PROPERTY built-in.

Pls Follow the Steps:

1- Menu Main Module
  • Open your current menu module application.
  • Create an independent new menu item with 'Window' name.
  • Invoke it's property palette,then follow these changes:
    • Set the Menu Item Type = Magic.
    • Set Magic Item = Window.
    • Set Label = Null. Set Command Type = Null.
    • Set Visible = No.

2- Forms Main Module (Optional)

In Pre-form or When-New-Form-Instance Trigger Form's Level

SET_MENU_ITEM_PROPERTY('MAIN_MENU.WINDOW', DISPLAYED, PROPERTY_FALSE);

SET_MENU_ITEM_PROPERTY('MAIN_MENU.WINDOW', ENABLED, PROPERTY_FALSE);

No comments:

Post a Comment

ORA-00845: MEMORY_TARGET not supported on this system

 The shared memory file system should have enough space to accommodate the MEMORY_TARGET and MEMORY_MAX_TARGET values. To verify: SQL> sh...