04-29-2013 10:41 AM
Hi,
I have a listbox control with non editable items. Is there an easy way to select an item with a right mousebutton click (Like the left click)
Solved! Go to Solution.
04-29-2013 11:04 AM
Create an Event structure and generate an event on the Mouse Down? event. Then use the Button terminal to determine if the right button was pressed. If it was then set the value of that listbox to the row that the mouse is over. You can do this using the invoke node Point to Row.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
04-29-2013 11:14 AM
Thank you, invoke node Point to Row does the work.