Consultor Eletrônico



Kbase P117276: Can a Progress window widget be modal?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   7/11/2006
Status: Unverified

GOAL:

Can a Progress window widget be modal?

GOAL:

Does Progress support modal windows?

GOAL:

How to simulate modal windows support in Progress?

FIX:

No, Progress did not implement modal windows because they violate the GUI standards. A Progress window widget can not be made into a truly modal window. A workaround is to hide the parent window before running a child window and redisplay it after the return of control from the child window. For example:
ParentWindow:VISIBLE = FALSE.
RUN ChildWindow.w.
ParentWindow:VISIBLE = FALSE.
APPLY 'ENTRY' TO ParentWindow.