04-12-2024 01:00 PM
I'm a beginner at LabVIEW and am trying to set up events that correspond to ring menu options. For example, my ring menu options are "0", "1" and "2", I want LabVIEW to run such that when the user toggles between the three options, different events take place. The events I want to take place are as follows:
What would be the best way to configure LabVIEW so that the events corresponding to ring menu options take place when the user toggles between the options?
Solved! Go to Solution.
04-12-2024 01:15 PM
Sound like what you need is just a Tab control that allows you to place different controls.
Set the Active Page of a Tab Control Programmatically in LabVIEW
04-12-2024 07:46 PM
If this is homework, please describe the problem description in detail. Also please clarify what you mean by "events". Are you using the term generically or are you referring to an event structure?
I don't understand at all why you even need a ring control. Why not just have three controls and let the user enter values in any order he wants?
04-15-2024 11:57 AM
Thank you so much! Setting it up through the Tab Control worked for me!
04-15-2024 11:59 AM
I was using the term event generically, not referring to an event structure.
The solution that was posted regarding Tab Controls worked for my purposes. I basically needed to create three different modes of operation that the user could toggle between so the tab control worked well.