Changing applet size [message #109934] |
Wed, 02 March 2005 01:41 |
mgole
Messages: 9 Registered: March 2005
|
Junior Member |
|
|
Hi
I am new to oracle forms(9i).When we run the form on the web,an applet is loaded .Is there a way to increase the applet size from its default size or is it fixed
Thanks
Madhukar
|
|
|
Re: Changing applet size [message #109965 is a reply to message #109934] |
Wed, 02 March 2005 07:15 |
wucis
Messages: 60 Registered: March 2005
|
Member |
|
|
Take a look at the file formsweb.cfg
and search for the parameters width and height:
# Forms applet parameter
width=100%
# Forms applet parameter
height=100%
Maybe you should also use in the form a PRE-FORM trigger
with the following code:
Set_Window_Property(FORMS_MDI_WINDOW, WINDOW_STATE, MAXIMIZE);
Set_Window_Property('WINDOW1', WINDOW_STATE, MAXIMIZE);
|
|
|