03-24-2010 06:17 AM - edited 03-24-2010 06:22 AM
Im running VI's in subpanels, and I have those in separate tabs.
For some reason I cannot click buttons when the subpanel is placed inside the tab -VI is running correctly-
When I place the subpanel outside the tab it works fine. I'm probably overlooking a setting, who knows what to do?
Thank you
Maybe I should mention that the tabs are configured as "tab into content" and the buttons are highlighting when mousing over but I just cannot click anything.
Solved! Go to Solution.
03-24-2010 06:30 AM
And Im this method to call a VI's reference and run it:
http://zone.ni.com/reference/en-XX/help/371361F-01/lvhowto/loading_panel_in_subpanel/
03-24-2010 06:56 AM
Ok problem solved, it was caused by sloppy programming:
I have buttons that allow tab select (5 of 'em).An event for a button click sets the page visibility for all tabs to off, except for the one selected. And here comes my fault:
I just put all those property nodes in the event case, causing them to execute in no particular order. While tabbing into the right tab, it caused for some reason not to function properly.
Using the error wires to first enable the visible page(pagevis property node) that is selected. Next making the rest invisible and finally using the 'tab control value' property node to tab into the page in this specific order makes it work like a charm.
Feel free to call me a dumbass 🙂