Home » Developer & Programmer » Forms » Resize my application
Resize my application [message #178750] Thu, 22 June 2006 07:57 Go to next message
emadbsb
Messages: 334
Registered: May 2005
Location: egypt
Senior Member

Hii all

can i resize my application in the run time
and make it full screen or make it fit to the screen


Thanks for everyone helped and helping me
Re: Resize my application [message #178889 is a reply to message #178750] Fri, 23 June 2006 05:33 Go to previous messageGo to next message
Maaher
Messages: 7065
Registered: December 2001
Senior Member
Put something like the following code in the WHEN-NEW-FORM-INSTANCE:
Set_Window_Property(FORMS_MDI_WINDOW, WINDOW_STATE, MAXIMIZE)

or
Declare
  v_window WINDOW;
Begin
  v_window := Find_Window('yourwindow');
  If not Id_Null(v_window)
  Then
    Set_Window_Property(v_window, WINDOW_STATE, MAXIMIZE);
  End If;
End;

Warning: untested code.

MHE
Re: Resize my application [message #179133 is a reply to message #178889] Sun, 25 June 2006 23:38 Go to previous message
djmartin
Messages: 10181
Registered: March 2005
Location: Surges Bay TAS Australia
Senior Member
Account Moderator
Search this forum for 'fit window' or 'WINDOW_STATE'.

David
Previous Topic: text_io package
Next Topic: Master detail forms
Goto Forum:
  


Current Time: Fri Sep 20 11:36:10 CDT 2024