Hi there,
Is there an MF dialog GUI method to refresh an object only i.e. not set focus on it?
For example to enable an object i just do this. Is there a refresh equivalent method?
CALL 'GUI-enable' using my-dialog-object-handle.
GUI.cbl ---------------------------------------------------------------------------------
$set mfoo
class-control.
AbstractWindow is class "awindow".
working-storage section.
01 obj object reference value null.
linkage section.
01 hand pic x(4) comp-5.
procedure division.
entry 'GUI-enable' using hand.
*> enable object from handle...
invoke abstractWindow "fromHandle" using hand returning obj.
invoke obj "enable".
invoke obj "destroyproxy" returning obj.
goback.
Many thanks,
Linden