LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

how to put a panel "always on top"

Thanks
 
Babak
0 Kudos
Message 1 of 3
(3,317 Views)

Hello,

You can adjust the panel's attribute:

     SetPanelAttribute (panel, ATTR_FLOATING, VAL_FLOAT_ALWAYS);

This will make your panel float over all other panels and other applications. If you only want your panel to float when your application is the active application, set the attribute value to VAL_FLOAT_APP_ACTIVE. The default value for this parameter is VAL_FLOAT_NEVER.

You can also set this panel in the User Interface Editor. Just double-click your panel, hit the 'Other Attributes...' button and adjust the 'Floating Style'.

Hop this helps,

Wim

0 Kudos
Message 2 of 3
(3,317 Views)
> Hop this helps,
Yes
 
thanks
 
Babak
0 Kudos
Message 3 of 3
(3,308 Views)