You can do this by doing a so-called widget tree walk on the frame.
Something like ( coded in Firefox IDE - not syntax checked ):
Code:
ASSIGN hWidget = hFrame:FIRST-CHILD
hWidget = hWidget:NEXT-SIBLING. /* There is a widget group that we don't want */
DO WHILE VALID-HANDLE ( hWidget ):
/* Your Stuff */
ASSIGN hWidget = hWidget:NEXT-SIBLING.
END.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.