Charbel Keedy
Charbel Keedy

Reputation: 65

Set Window Size according to system Resolustion

I am designing an application using Oracle FORM Builder 6i. How can I change the window size that open automatically according to the monitor of various sizes? Please help

Upvotes: 0

Views: 1216

Answers (1)

Littlefoot
Littlefoot

Reputation: 143133

Locate window name in Object navigator; by default, it is (probably) "WINDOW1".

If PRE-FORM trigger doesn't exist, create it and put such a line into it:

set_window_property('WINDOW1', window_state, maximize);
                     -------
                     this is the window name

An alternative approach would be to use

set_window_property(forms_mdi_window, window_state, maximize);

Upvotes: 1

Related Questions