Consultor Eletrônico



Kbase P30720: How do I make the window resizable at run time?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   7/10/2003
Status: Unverified

GOAL:

How do I make the window resizable at run time?

FACT(s) (Environment):

Windows

FIX:

Set the RESIZE Attribute of the window to TRUE. This attribute is for graphical user interfaces only and can be set only before the window is realized.

AppBuilder generated regular windows (not smart) are resizable by default. The RESIZE box is checked in the property sheet of every AppBuilder newly created window.

To make a regular (not smart) window resizable, execute the statement:

WinowName:RESIZE = TRUE.

before the window is realized.

To make a smart window resizable, insert the statement:

WinowName:RESIZE = TRUE. in the Main Block before the "{src/adm2/windowmn.i}" statement:

WinowName:RESIZE = TRUE.
{src/adm2/windowmn.i}