Wolfgang Schölmberger
Member
Hy everybody,
I have a very simple program, that works since years and lists all Progress-Windows:
DEFINE VARIABLE phand AS HANDLE.
phand = SESSION:FIRST-CHILD.
DO WHILE VALID-HANDLE(phand):
IF phand:TYPE = "WINDOW" THEN MESSAGE phand:TITLE VIEW-AS ALERT-BOX.
phand = phand:NEXT-SIBLING.
END.
But now I have also ABL-windows, which are embedded in .NET Forms, and these are not shown.
Could anybody please tell me how to solve this problem ?
TIA, Wolf
I have a very simple program, that works since years and lists all Progress-Windows:
DEFINE VARIABLE phand AS HANDLE.
phand = SESSION:FIRST-CHILD.
DO WHILE VALID-HANDLE(phand):
IF phand:TYPE = "WINDOW" THEN MESSAGE phand:TITLE VIEW-AS ALERT-BOX.
phand = phand:NEXT-SIBLING.
END.
But now I have also ABL-windows, which are embedded in .NET Forms, and these are not shown.
Could anybody please tell me how to solve this problem ?
TIA, Wolf