Consultor Eletrônico



Kbase P124504: ADM2: Initialized pages bleed through each other.
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   19/06/2007
Status: Unverified

FACT(s) (Environment):

Windows
OpenEdge 10.1B01 32-bit Service Pack

SYMPTOM(s):

ADM2: Initialized pages bleed through each other.

CAUSE:

This is a known issue

FIX:

As a workaround, override the initializeObject procedure of the Smart Window to hide the pages that display incorrectly. Specifically, hide the offending page after the RUN SUPER and after the RUN initpages(). For example:
/* Code placed here will execute PRIOR to standard behavior. */
RUN initpages("1,2").
RUN SUPER.
/* Code placed here will execute AFTER standard behavior. */
RUN hidepage IN TARGET-PROCEDURE (2).
RUN selectpage(1).