Consultor Eletrônico



Kbase P46854: How to initialize more pages when the smartWindows is executed
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   17/06/2005
Status: Unverified

GOAL:

How to initialize more pages when the smartWindows is executed

GOAL:

How to run initpages in a smartObject application?

FIX:

Override the initializeObject procedure in the window and run the initPages procedure.
PROCEDURE initializeObject:

/* Purpose: Initialize the current SmartContainer and initialize some

frequently used pages at the same time. */

RUN SUPER. /* Execute standard page creation first. */

/* Initialize pages 1, 2, and 3 at startup. This will create the

pages but not view them. */

RUN initPages ('1,2,3':U).

END PROCEDURE.