Nodes property and rings of Menu

So I have this multimeter I need to make a driver for, and it has so many modes/scales of operation it will be a pain.

So that's what I'm working with, there are a lot of 'functions of measure', including the tension continues, alternating voltage, current DC current alternative, etc, there is more than what is shown in this picture, but functions are the first row in the table above.

Associated with each function is a set of ranges. GPIB codes for each range are on the left most column, and you can see what they are in the other columns.

To manage the functions of measure and the beach in this driver I have, I'll use 3 sub.vis:

The first sub.vi is very simple, consisting of a ring of unique menu, a number to string converter, then a concactenate string, shown in the first attachment. It sends the command of the unit function.

The third sub.vi is also quite simple, it sends the range control to the device.  This is the sub.vi between the two that I need help.

What I want is to have a single control of the range , in the form of a ring of menu, and the 2nd sub.vi reformatted this menu ring. So what I need is to use a property node to set the line items in the ring menu to match with items included in the 6 columns above, so that if the function is chosen to be volts DC, the menu range ring will show 3mV 10mV, 30mV, 100mV, etc etc, but if the function is chosen to be alternating current the menu range ring show 3uA, 30uA, 300uA, etc etc.

The other tricky part of this is that the voltage and the current functions of the AC pass range controls (see how there is no range associated with orders R2, R4, R6, etc.).

That I'll probably be able to come up with something clever to treat (as simply double the value coming out of the ring and incrementing it with a + 1 on these functions to make them all odd), but for now I need help in the form line items in the menu ring.

Attachment 2 was my first attempt to simply edit the line items in the menu ring.  Unfortunately the way it is put in place, he crams this whole string them in 1st command line, rather than separate.  I don't know how to change one of the elements of the past that 1st menu ring.

Hope I explained quite well, make me know if I need to be clearer.

You use the wrong property.  The property to use is 'Strings' and the entry is an array of strings.

Tags: NI Software

Similar Questions

  • all the nodes property objects and objects grouped

    Hello

    Now position an on my GUI objects in the center of the screen using nodes property. However, I don't want to have to have a node property for each decoration, image and control. Is it possible that I can group all the objects and then use a property node to position them? I tried to use the property node all objects, but none of the clues seem to apply to my group of objects.

    Help please!

    Thank you very much.

    John

    p.s. I downloaded my vi test. The graph, the decoration and the exit button have been grouped. control over check.vi to set the object to be moved.

    Tabbed pages are a great way to group objects GUI.

    Rather than use a decoration,

    • use a tab control
    • Delete everything except the first tab
    • Hide tab
    • The value of the proprties of the tab control and control on this page is move, hide, display as well as the tab control.

    I hope this helps,

    Ben

  • Table & node property

    Hello

    I have a simple problem.

    On my side, I have a 2D chart.
    I can right click and exploitation of data > empty data to clear the table.

    I want to do this in my entry into force.

    If I do the node property or the local Variable with an empty array as input for my program initialization, it don 't work.
    They are therefore, any possibility of having a property node > data operation > empty table.

    In advance, thank you for your help

    Hey Mini,

    in your init framework you write empty tables to table three controls.

    When I test your VI it works as expected: all three paintings are deleted/erased...

    What else do you need?

    But as said before: you use two shift uninitialized registers. It would be really useful to initialize - using the same empty array constants!

  • disable the node property problem

    Hi all!

    I want to do a VI that the user will not fool around with the button.

    So I put in my case for the "change the value" event, a node property disable during 1 second (disable) and out of it, an enable.

    The problem is that if I press the as button 3 times in 1 second, the button will still change the value 3 times, as he has memory.

    I want to just the user to be able to make changes to the value only after 1 second and not save them. I hope I made myself understood

    Are there any suggestions?

    You may use a state machine with two loops. UI loop place the actionwith a timestamp and the loop of consumer can compare timestamps to decide if enough time has passed, or if the action should be discarded.

  • An event of a ring of Menu when the user selects the element itself

    As the subject says: I have a ring of menu.  I want to trigger an event if the user clicks on a menu item that has the same value as the vehicle currently has.

    I considered dynamically by registering on ' Ring: Mouse Down ", then pulling the value from that - but I can't understand how to tell if they clicked on the inside or outside of the menu box. Also, I can't assume the menu box, it appears is always the same size, because I'm creating programmatically values of the ring.

    Any thoughts?

    That shed light on the issue. Use a drop-down list box. Any selection in a list box drop-down is always a change in value, so you can use the value change event and capture the same selection twice. I tried and it works. Selected 'Test 1' over and over again, and it still triggers change in value.

  • Node property accessor vs LVOOP

    I spent my CLD and exploring the world of LVOOP.  I am a mechanical engineer with about 1.5 years of experience in LabVIEW, so I still have a ton to learn.

    While browsing through the LVOOP, I ran across things that I can't reconcile.

    When is the right time to create an accessor for a property of a class method and what is the right time just use a node property to get or set a node of class?

    Data class must have all children data parent instantiated inside more his own?  Or does just have its own data?  (that is, if the parent has child Name and Value, should he Name, Value and amount or quantity?)

    Can anyone provide an example of Composition as a class relationship?  I understand the LVOOP class training that the Composition is a "has - a" relationship, but I'm still not sure what this means in reality in the real world.

    Any help is appreciated.  Thank you

    Welcome to the object-oriented approach.

    When is the right time to create an accessor for a property of a class method and what is the right time just use a node property to get or set a node of class?

    I used to always create accessors and it is advisable to do so. Technically if the accessor is private (which means no VI outside the class can call) and you don't need to do any checking of range or any other logic on a read or a write and your class is not to have children, then you might get away with just using a ungroup by name (using a property node requires creating an accessor - the property node is just syntax to call the accessor).

    An accessor allows you to:

    1. the scope of access (i.e. which is able to access these data, data of class being always private in LabVIEW)
    2. error checking or conversion to centralize code
    3. protect code against changes how store you a value (as long as you can write an accessor which returns a value in the specified format, the way the value is stored internally to the class will not affect the rest of the application)
    4. have a single point to debug

    Data class must have all children data parent instantiated inside more his own?  Or does just have its own data?  (that is, if the parent has child Name and Value, should he Name, Value and amount or quantity?)

    Not if you use accessors to get data from parents. Because the child inherits all methods of parents, he can call the parents of the accessor methods. Recreate the fields Name and Value of the child class would be exactly what OO tries to avoid duplicate work.

    Can anyone provide an example of Composition as a class relationship?  I understand the LVOOP class training that the Composition is a "has - a" relationship, but I'm still not sure what this means in reality in the real world.

    Of course, take the job template DAQmx for example.  A task class contains information of calendar and 'a' one or more channels in. Each channel can be it's own class that represents the type of measure and scale for this specific channel information.  Given that the task class contains an array of classes of channels that have no use outside the context of a task, then you have a composition relationship.

    Hope this helps clear things

    Simon

  • I have improved my 5s to 9,32 now my text and ring tones do not work if my phone is locked.  Why?

    I recently did the 9.3.2 upgrade on my 5.  Now when my screen is locked, I don't get all tone when I receive a text.  Also, I have a hit or miss with ringtones when the screen is locked.  If my phone is unlocked, I hear them both.  I tried to reset the text and ring tones, but it did not work. Is there anything else I need to do? Is this a bug?  Thank you!

    Check the settings > do not disturb. If it is enabled, disable it.

  • iTunes and app store menu missing from missing settings after put 9.3 updated ios (iphone 6)

    Today, that I update my iPhone to iOS 9.3 6. I noticed that itunes and App Store menu missing from missing settings after (usually presents below iCloud)

    Is anyone else having same issue?

    Check the settings > general > Restrictions > less help to ensure that iTunes store and install apps are on. -AJ

  • Lack of "automatically hide and show the menu bar.

    Hi all, I want to hide my menu bar. I watched how disappear - it turns out that the checkbox "automatically hide / show menu bar" is missing. It is supposed to be under "use donkere menubalk en donker Dock. Why is it missing?  Thank you very much!

    Hi Mjappie

    This feature has been added in El Capitan.

    You must update to 10.11.3 to hide and show the menu bar.

  • the value node id and baud rate by lss (CANOpen)

    Hello

    for a research project, we try to use 2 volume CAN flow sensors (http://www.hydrotechnik.com/english/QT106_DSEN.pdf) . For use in our network CAN I first set up the node id and the baudrate of each of them. The manufacturer told me to do it via the put layer Service (LSS). (How) I can do using Labview?

    I can use one of the following cards, NEITHER CAN: NI PCI-CAN/2 and NOR-PCI-8512.

    Thanks for the tips.

    Greetings,

    Thomas

    Unfortunately, none of your interfaces are compatible with CANopen. You will need a PCI-8531.

    The flow rate in baud rate and node id can be configured easily with the library OR industrial for CANopen communication .

  • We have SQL Server 2005 cluster (3 node cluster), and if we improve this nodes to 2008 R2, the databases associated with the named instance can stay to the version of SQL Server 2005?

    original title: SQL Server 2008

    We have SQL Server 2005 cluster (3 node cluster) and if we improve this nodes to 2008 R2, can the databases associated with the named instance remain to the version of SQL Server 2005, I seem to disagree with this notion, but still need to validation of the pro.

    One way I can think of to achieve this scenario changes the compatibility level to SQL Server 2005 when the node has been upgraded to SQL Server 2008, so we can upgrade databases to SQL 2008 as and when the vendors provide support for this version.

    Hello

    Here is the Vista forums

    Try the links below:

    SQL Server forums

    http://social.technet.Microsoft.com/forums/en-us/category/SQLServer/

    SQL Server TechCenter

    http://TechNet.Microsoft.com/en-us/SQLServer/bb265254.aspx

    Blogs and Forums SQL server 2008

    http://www.Microsoft.com/sqlserver/2008/en/us/forums-blogs.aspx

  • the icon start at the bottom left and the taskbar at the bottom disappeared with notifications i.e. time etc, in Panel I cllicked on the taskbar and the start menu icon, but I get nothing.

    Remember - this is a public forum so never post private information such as numbers of mail or telephone

    • My icon start at the bottom left is gone also the taskbar at the bottom with the notifications inside IE clock etc.
    • I moved the mouse to the edges of the screen and dragged to the rear but no task bar.
    • In the control panel in Classic view, there is the taskbar and the START MENU ICON, but when I click on it I do not get the Advisor news, I get nothing if clicked.

    Suggestions:

    1. press Ctrl + Alt and WAITING, press DELETE key > select Task Manager > file > new task (run...) > in the Open box, type explore> OK

    Is back on the taskbar?
    If so, make sure that lock you the taskbar, right-click on the taskbar > check 'lock the Tasbar.

    2. If the above does not help, go to safe mode and see if you can see the taskbar at the bottom.
    Here's how to get safe mode:

    Shut down your computer > turn it back on and immediately and repeatedly tab key F8 until you see a black and white screen. The top/down arrow and select Safe Mode.

    If you can see the taskbar in safe mode, please do a system restore. Choose a date where you did not have this problem as your restore point.

    Start button > Search box, type system restore > press the Enter key > uac prompt > click on choose a different restore point > next > select dates as your restore point, until the click > next > finish
    To sit and wait. The machine restarts when it's done.

    For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • Windows Mail does not open on Vista OS. It is as if it had been drawn computer, but is still listed in the programs and the start menu. It was beautiful last night.

    I tried to open programs and the start menu and do a right click on both to open the butnothing happens.  Tried to reset registry but the instructions are for XP.  Don't know what else to do.

    I tried to open programs and start menu and right click on both to open butnothinghappens.  Tried to reset registry but the instructions are for XP.  Don't know what else to do.

    Try a system restore to a Date before the problem began:

    Restore point:

    http://www.howtogeek.com/HOWTO/Windows-Vista/using-Windows-Vista-system-restore/

    Do Safe Mode system restore, if it is impossible to do in Normal Mode.

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.

    http://www.windowsvistauserguide.com/system_restore.htm

    Read the above for a very good graph shows how backward more than 5 days in the System Restore Points by checking the correct box.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    If the above does not resolve the problem:

    http://www.Vistax64.com/tutorials/62560-Windows-Mail-problems.html

    How to fix most of the problems with Windows Vista Mail

    See you soon.

    Mick Murphy - Microsoft partner

  • My screen goes black and the start menu does not load after start up logo and the only thing on the screen I see is my mouse pointer

    My screen goes black and the start menu does not load after start up logo and the only thing on the screen I see is my mouse pointer

    Hello

    You can access Mode safe? Repeatedly press F8 as you start? If yes you can try Control Panel - device
    Manager - graphics card - Double click on - driver tab - click on UPDATE driver - then right click
    on devices and UNINSTALL - REBOOT.

    Another method to try to get to the desktop (try in normal Windows Mode without failure)
    CTRL + ALT + DELETE and on the tab process EXPLORER.exe and COMPLETE the PROCESS on this subject - then
    on the Applications tab - lower right - new task - type in EXPLORER.exe. Safe mode is reached
    by tapping F8 as you start several times.

    First check this thread in case it is simple and if not to come back to this thread.

    http://social.answers.Microsoft.com/forums/en-us/vistaprograms/thread/50247d5e-0ae0-446c-A1bd-11287fd1478a

    Black screen problems are extremely difficult to repair and all patch is usually on a base hit or miss.
    That there is no information on a black screen as it is on a blue screen just adds to the
    Difficulty. Often using a restore point or Startup Repair will have no effect. You can try a
    Google to see the proposed repairs, whom some have worked however these cover a wide
    field efforts.

    Here's a video of one of them.

    http://www.Google.com/search?hl=en&q=black+screen+of+death+Vista&btnG=search&AQ=f&OQ=&AQI=G1

    Here's another fix
    http://blogs.PCMag.com/SecurityWatch/2008/12/the_mysterious_black_screen_of.php

    You have a Vista disk? You can try restoring the system to it. If you do not have your system disks
    manufacturer will sell them at low prices. Or try in safe mode if you can get there.

    How to make a Vista system restore
    http://www.Vistax64.com/tutorials/76905-System-Restore-how.html

    You can create a recovery disc or use someone even version (to do the system restore there only to)
    being bootable).

    How to create a Vista recovery disk
    http://www.Vistax64.com/tutorials/141820-create-recovery-disc.html

    ------------------------------------------------

    These require the correct Vista discs since you can not start safe mode.

    Try the Startup Repair tool-

    This tells you how to access the System Recovery Options and/or with a Vista disk
    http://windowshelp.Microsoft.com/Windows/en-us/help/326b756b-1601-435e-99D0-1585439470351033.mspx

    Try recovery options Startup Repair

    How to do a startup repair
    http://www.Vistax64.com/tutorials/91467-startup-repair.html

    -----------------------------------------------

    Here are a few Google searches where many have found different solutions:

    Vista black screen - check that a 1st
    http://www.Google.com/search?hl=en&source=HP&q=Vista+black+screen&AQ=f&OQ=&AQI=G10

    Vista black screen Solution
    http://www.Google.com/search?hl=en&q=Vista+black+screen+solution&AQ=f&OQ=&AQI

    Vista black screen Fix
    http://www.Google.com/search?hl=en&q=Vista+black+screen+fix&AQ=f&OQ=&AQI

    -----------------------------------------------

    If necessary and you can access all ordinary Windows.

    You can try an In-Place Upgrade (hopefully save programs and data) or a repair installation (if all goes well
    saves the data, and you need to reinstall the programs). Be sure to do a good backup or three.

    You can use another DVD that are not protected but you will need to copy you have the product key.

    On-site upgrade
    http://vistasupport.MVPs.org/repair_a_vista_installation_using_the_upgrade_option_of_the_vista_dvd.htm

    If nothing works, you can make a repair facility that must save the data but you will need to
    Reinstall the programs. This also requires correct Vista disks especially for OEM versions. You will be
    need to know your product Code.

    This tells you how to access the System Recovery Options and/or a Vista DVD
    http://windowshelp.Microsoft.com/Windows/en-us/help/326b756b-1601-435e-99D0-1585439470351033.mspx

    How to perform a repair for Vista Installation
    http://www.Vistax64.com/tutorials/88236-repair-install-Vista.html

    ---------------------------------------------------------------------------

    Another method that works sometimes: at the command prompt, type of Vista startup disk:
    (type in a single line or copy / paste a line at a time and then press enter - type no parenthesis)
    or "BOLD"
    )

    c:

    cd\

    CD c:\Windows\System32\winevt (there is a space between cd and C :)

    Ren LogsOLD Logs (there are spaces between ren and newspapers and Logsold)

    RESTART Windows

    I hope this helps.

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • BlackBerry Q5 can I put the phone both vibrate and ring for an incoming call?

    I put the phone both vibrate and ring for an incoming call?

    Yes, you can.

    On your home screen, slide to the bottom of the top, and then select settings > Notifications > Applications > phone. You can then set to vibrate while sounding, and you can select which ringtone you want to use.

    In another of your discussions, you asked how to set a ringtone for a specific contact. What I have described here will set the default ringtone for all callers, but those that you set up with the specific notifications.

    See you soon.

Maybe you are looking for