08-31-2016 10:55 AM
Cant figure out why this little VI does not work.
Wan't to move edit cell 1 cell down using return.
The edit position is -2,-2 no matter what I do.
08-31-2016 12:08 PM
Help file is your friend.
08-31-2016 12:20 PM
Actually that's not the problem. The control already has key focus by virtue of the fact that a key press event happened to it, so that portion of the help file is irrelevant.
What you need to do is change the event to a "Filter" event (the one with the question mark). The problem is that the Key Down event occurs after the editing has been stopped, so you get -2,-2. If you filter it, and set the "Discard?" output node to True on the Return key, it works the way I think you want it to work.
08-31-2016 01:28 PM
This is a duplicate thread: http://forums.ni.com/t5/LabVIEW/Multicolumn-listbox-jump-1-cell-down/m-p/3341435
08-31-2016 01:34 PM
@Kyle97330 wrote:Actually that's not the problem. The control already has key focus by virtue of the fact that a key press event happened to it, so that portion of the help file is irrelevant.
I don't think it's irrelevant. Maybe for moving focus to the next row it is but in order to edit the next row, it is required.
09-01-2016 12:26 AM
Multiple thread created
See the reply in below link
https://forums.ni.com/t5/LabVIEW/Multicolumn-listbox-jump-1-cell-down/td-p/3341435
09-01-2016 12:33 AM
The funny ting is that I have an other example without text fokus and without filterevent which works fine.
Have a look on this VI:
09-01-2016 12:33 AM
The funny ting is that I have an other example without text fokus and without filterevent which works fine.
Have a look on this VI:
09-01-2016 12:39 AM
Check attached VI. whether it makes your requirement
09-01-2016 02:20 AM
Thank you 🙂
But actually I want it on key down (return)