07-18-2025 02:46 PM
Hello all, I posted asking a question earlier about why my tree wasn't allowing me to drag and drop the controls within it. I was told to make an event structure for it, so I did. The problem is that I'm pretty sure I made the event structure properly, but I still can't select, let alone drag and drop any of my controls. Here is my code.
07-19-2025 10:52 AM
I can't open your VI. A lot of people here don't have the latest version of LabVIEW. Backsave your VI to version 2019 to make it accessible to a lot of people.
Note that for tree controls, you have to write the code for drag and drop. That is you have to create the code for the various "Drag" events on the tree.
07-20-2025 06:42 PM
Here is the VI in the 2019 version:
07-20-2025 08:00 PM
The property "Allow Selection of Parent Items" being set to False is preventing anything from being selected (but I don't know why).
Also:
So you can have something like this:
07-20-2025 08:37 PM
Thanks, it seems like it's treating the signals of my .dbc file as a part of the parent tag. All I did to fix it was set the "Child Only?" part of the invoke node to true (it is false as default). I kept all the property node values the same and it works as intended.
Your three points will help for future reference, thanks for the help.