I have Dialog A, which calls Dialog B. When B opens, I want to hide A.
In the past, I simply made the object for Dialog A private, and when it called B, I could use a Hide command:
PRIVATE oDlgA
And in the second one:
oDlgA:hide()
Now, however, I am moving everything to classes, and so oDlgA is logged as DATA. When I call Dialog B, oDlgA is not visible. I tried passing it as a parameter, but no success ( it isn't seen )
Is there a function in FW that allows me to see the calling ( Active ) dialog when I open the Method that will use Dialog B ?
Thanks.