LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Ignore table selection rows

Hello, I use a table  to show some information. If accidentally  I select a row the program stop to work and I have to use the task manager to close  the program and labview. How to ignore or disable the cell selection in table, so if i click in a cell nothing happens??
0 Kudos
Message 1 of 7
(3,310 Views)

Hi maumontesi,

you can change the enable state or you change the control to an indicator.

 

Mike

0 Kudos
Message 2 of 7
(3,307 Views)

hi,

pls send that vi i will get back u  

Regards,
Santhosh M
0 Kudos
Message 3 of 7
(3,305 Views)

The table is an indicator. Disabling the control don't have any effect. I attach the vi (the table is UID LIST)

Thanks

 

0 Kudos
Message 4 of 7
(3,293 Views)

hi,

 

ur using event case in this vi. u go to edit event and un check that lock front panel until this event completes

Regards,
Santhosh M
0 Kudos
Message 5 of 7
(3,282 Views)

 

It is dangerous to put event structures inside case structure.

 

 

 

In your case you have the event structure with "UID Litst Mouse down event" in a case wired with "Read Temp"  controled.

 

 

 

If  you pressed the mouse on your table, it will locked the Front panel until this event case is done. The event will not be executed as "Read Temp" is off. And you cannot click

on "read temp" or "esci" button as your front panel is locked.

 You have two solutions 

  - Change your diagram in order to put the event structure out of the case structure, and add a time out event case. 

  - If you don't want to re-disign  your code, click on your event case, "edit case event", and uncheck the following option : 

 

 

 

 

 

 

Message Edited by AntoineP on 11-04-2008 12:18 PM
Download All
Message 6 of 7
(3,280 Views)

Thank you very much. Now the program works well!!

Maurizio

0 Kudos
Message 7 of 7
(3,241 Views)