LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Is there anyway to disable the beep on tables?

I am using a table. In the table I super-impose a ring control over the active cell on an EVENT_LEFT_DOUBLE_CLICK to give the table "ring like functionality". The problem is the cell is an indicator type and it gives the annoying beep everytime I double click. I would like to find a way to keep it as an indicator to avoid allowing the user to enter their own values in the cell.
0 Kudos
Message 1 of 3
(2,793 Views)
You don't need to put the table control in indicator mode. You just need to "swallow" the EVENT_LEFT_DOUBLE_CLICK to prevent it from going into edit mode. Swallowing the event means returning a positive value (return 1;) instead of 0. See the online help for a discussion of swallowing events.

Best Regards,

Chris Matthews
National Instruments
0 Kudos
Message 2 of 3
(2,793 Views)
You don't need to put the table control in indicator mode. You just need to "swallow" the EVENT_LEFT_DOUBLE_CLICK to prevent it from going into edit mode. Swallowing the event means returning a positive value (return 1;) instead of 0. See the online help for a discussion of swallowing events.

Best Regards,

Chris Matthews
National Instruments
Message 3 of 3
(2,793 Views)