Make fill-in invisible/visible

bmetelits

New Member
I have a fill-in widget that I want to make invisible dynamically at runtime.
Assuming that 'wh' is the widget-handle for the fill-in, I have tried:
(1) Hide wh.
(2) Assign wh:visible = no.

Those statements work with buttons, but they don't seem to work with the fill-in. How can I set the field invisible/visible?

Thanks,
Brian
 

j4n

Member
DEF VAR hMyHandle AS HANDLE.

hMyHandle = flnExample:HANDLE IN FRAME {&FRAME-NAME}.

hMyHandle:SENSITIVE = FALSE.
hMyHandle:HIDDEN = TRUE.


try...



Originally posted by bmetelits
I have a fill-in widget that I want to make invisible dynamically at runtime.
Assuming that 'wh' is the widget-handle for the fill-in, I have tried:
(1) Hide wh.
(2) Assign wh:visible = no.

Those statements work with buttons, but they don't seem to work with the fill-in. How can I set the field invisible/visible?

Thanks,
Brian
 
Top