Consultor Eletrônico



Kbase P110818: Error (5905) on increasing the width of a fill-in.
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   14/11/2005
Status: Unverified

SYMPTOM(s):

Error (5905) on increasing the width of a fill-in.

**All or part of <widget id> is being placed outside of <parent widget id> by setting <attribute>. (5905)

**All or part of Fill-IN FILL-IN-1 is being placed outside of FRAME DEFAULT-FRAME by setting WIDTH. (5905)

Executing code that increases the width of the window and a fill-in widget as per the following example:
C-Win:WIDTH = C-Win:WIDTH + 50.
FILL-IN-1:WIDTH = FILL-IN-1:WIDTH + 50.

CAUSE:

The width of the FRAME parenting the FILL-IN widget is smaller than the new width of the child FILL-IN widget.

FIX:

Increase the width of the parent FRAME to make it fit the child FILL-IN widget as per the following example:
C-Win:WIDTH = C-Win:WIDTH + 50.
FRAME {&FRAME-NAME}:WIDTH = FRAME {&FRAME-NAME}:WIDTH + 50.
FILL-IN-1:WIDTH = FILL-IN-1:WIDTH + 50.