I have a VI with multiple MultiColumn Listboxes in it. One way I've seen to make the entries writeable is as follows:
This works fine. The only issue is that to get the 'Point to Row Column' (PtRC) method requires (as I understand it) right-clicking on the MCL and selecting that method.
I have multiple MCLs, and I wanted to create an event structure that was generic and could process any of them the same way. But the problem with that is that I don't know a way to get access to the PtRC method for each one. The only way I know to do it would be to use VI Scripting to create the reference on the fly (not sure if that would even work), but even if that works for me, I don't think it will work with the free LV RunTime Engine (my experience is that you can't use the RTE to execute any VIs that utilize VI Scripting).
So my question is, is there a way to get a reference to the PtRC method - generically - without using VI Scripting, and/or is there a different way to do what I'm trying to do here (i.e. make the MCL writeable by the user and have it retain the values the user writes to it during VI execution).
thanks