form maximize [message #441042] |
Thu, 28 January 2010 07:06 |
shahzad-ul-hasan
Messages: 643 Registered: August 2002
|
Senior Member |
|
|
dear sir,
i have form previously build in form-6(Fmb, Fmx). and now i have installed oracle 9iDS (Forms). when i run the application in IE. it will show me the only half form. pls find the attached file.
i need this form be shown on full screen like that.
-
Attachment: hal form.JPG
(Size: 19.08KB, Downloaded 698 times)
|
|
|
Re: form maximize [message #441052 is a reply to message #441042] |
Thu, 28 January 2010 07:18 |
beginnerHere
Messages: 55 Registered: October 2009
|
Member |
|
|
hi shahzad,
Have you made use of "set_window_property" in the When_New_Form_Instance trigger to maximize the window.
If you have then check what screen resolution did you build the form in.
Hope it helps.
|
|
|
Re: form maximize [message #441056 is a reply to message #441052] |
Thu, 28 January 2010 07:45 |
shahzad-ul-hasan
Messages: 643 Registered: August 2002
|
Senior Member |
|
|
i am using in when_new_form_instance. this:
declare
BEGIN
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW, WINDOW_STATE ,MAXIMIZE);
SET_WINDOW_PROPERTY('window1', WINDOW_STATE ,MAXIMIZE);
END;
.......................................................
it will run on form 6i enviroment. but when i run on form9i enviorment. it shows me half form.
|
|
|
|
Re: form maximize [message #441257 is a reply to message #441085] |
Fri, 29 January 2010 21:36 |
tamzidulamin
Messages: 132 Registered: October 2009 Location: Dhaka
|
Senior Member |
|
|
In Formsweb.cfg file
Set the following parameter
# Forms applet parameter
width=100%
# Forms applet parameter
height=100%
Tamzid.
|
|
|