| **Navigation:**  [[introduction.htm|Language Reference]] > 13 - Built-in Functions >====== UNHIDE (show hidden control) ====== | [[unfreeze resume control drawing .htm|{{btn_prev_n.gif|Previous page}}]][[introduction.htm|{{btn_home_n.gif|Return to chapter overview}}]][[unload remove a called dll from memory .htm|{{btn_next_n.gif|Next page}}]] | | || **UNHIDE(**// //[ //first control// ] [,// last control //] **)** {{blk2blue.jpg|blk2blue.jpg}} | **UNHIDE** | Displays previously hidden controls. | | //first control// | Field number or field equate label of a control, or the first control in a range of controls. If omitted, defaults to zero (0). | | //last control// | Field number or field equate label of the last control in a range of controls. | The **UNHIDE** statement reactivates a control or range of controls, that were hidden by the HIDE statement. Once un-hidden, the control is again visible on screen. This procedure is valid in Clarion Win32 Windows, and also for REPORT structures in both Clarion Win32 and Clarion#. **Example:** ** CODE** ** OPEN(Screen)** ** HIDE(?Control2)            !Control2 is hidden** ** IF Ctl:Password = 'Supervisor'** ** ****UNHIDE****(?Control2)         !Unhide Control2** ** END** **See Also:** [[hide blank a control .htm|HIDE]] [[enable re activate dimmed control .htm|ENABLE]] [[disable dim a control .htm|DISABLE]]