01-15-2016 01:29 PM
I have a ListBox, into which I load multi-column, multi-row excel files. Once I select a single cell to motify it, I would like to move down to the next row or left/right to the next column with enter and tab keys respectively? It would be especially nice to be able to move to the next cell with it being active, so that I can make changes without touching mouse pointer.
Is it possible to do?
Solved! Go to Solution.
01-15-2016 02:00 PM
The problem with editing a listbox at runtime is that the contents you see on the front panel isn't data -- its a property of the control. A table control however can be modified at runtime and it already has some navigation built. Tab moves to the next cell. Ctrl left and right arrows move back and forth whole cells. Return moves down a line. Etc...
Mike...
01-15-2016 02:40 PM
Is this what you want?
01-15-2016 02:59 PM
Could you reupload version for 2014 LabVIEW? Thanks
01-15-2016 03:43 PM
LV2014
01-15-2016 03:58 PM
Thank you! Exactly what I been looking for.