Using Pre-Form Trigger In Oracle Forms

Pre-Form trigger in Oracle Forms fires during the form start-up, before forms navigates to the first navigable data block of that form.

Use a Pre-Form trigger to perform the tasks such as maximize the forms_mdi_window, initialize some Global variables or set some properties of the form or data blocks etc. and if form gets failed to load (On Failure) Oracle Forms leaves the current form and fires no other trigger.

The following is an example of Pre-Form trigger:

Create the pre-form trigger as shown in below screen shot:



And write the following code in code editor to maximize the parent form window (forms_mdi_window) of Oracle Forms
 
SET_WINDOW_PROPERTY(forms_mdi_window, window_state, maximize);
posted @ 2016-12-25 18:32  全威儒  阅读(375)  评论(0编辑  收藏  举报