Controlling numeric slider with numeric control

Hello,
what i have is a numeric slider and
a numeric control.  i would like to be able to move the slider and have
it update the value in the numeric control and vice versa.  the problem
is that i can update the value in the numeric control when i move the
slider, but i can't update the slider if i try to change the value in
the numeric control.  i was trying to use the 'value' property node for
each of them and and wire each of the controls to the opposite property
node.  i know they are both control but i thought if i change the
'value' to an input then it may update.
i have attached the vi.
thank you
Attachments:
numeric_slider.vi ‏10 KB

AdamKrzy16 wrote:
Any help or insight would be appreciated beyond measure!
Well, since the event structure only executes when one of the controls changes, it is blocking the loop. Dataflow in action!
A quick solution would be to make the event structure "transparent" by adding a short and empty timeout case. Now just use a feedback node to retain the existing value if the controls did not change.
There are probably definitely better ways to do this, but they would require more fundamental changes to your code.
LabVIEW Champion . Do more with less code and in less time .
Attachments:
PID LabVIEW Program_slider try number 2MOD.vi ‏282 KB

Similar Messages

  • How can i control a slider with a button.

    Is it possible to control a slider with a button? It works like a automatic sliding gate. Is it possible? Where when you open the gate, it will slide slowly.. And can anyone help me with this..

    I was bored...
    The way this usually works is that I think of a simpler implementation once I click the Submit button... 
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice
    Attachments:
    gate.vi ‏15 KB

  • Controlling 2 videos with 1 control ?

    when i import a video into flash 8 i can attach prebuild
    controls to it. can i use these controls to control 2 videos at
    once ?

    i got it to work with the following code using custom ui
    elements :)
    thanks again to charles.crepin and maybe it will help
    Nickels55.
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns1:NetStream = new NetStream(nc);
    ns1.play("flv/Main_Teil_1.flv");
    var vWin1:
    Video;
    vWin1.attachVideo(ns1);
    var ns2:NetStream = new NetStream(nc);
    ns2.play("flv/Main_Teil_2.flv");
    var vWin2:
    Video;
    vWin2.attachVideo(ns2);
    var nDuration:Number;
    ns1.onMetaData = function(oData:Object):Void {
    nDuration = oData.duration;
    var btPause:Button;
    var btPlay:Button;
    var btStop:Button;
    btPause.onRelease = function():Void {
    ns1.pause();
    ns2.pause();
    btPlay.onRelease = function():Void {
    if(ns1.time < Math.floor(nDuration) ){
    ns1.pause(false);
    ns2.pause(false);
    } else {
    ns1.seek(0);
    ns2.seek(0);
    };

  • Control a generator with a control volage by serial port RS232

    Hello everybody,
    I would like to control a generator thanks to a control voltage. This last one would be sent to a switch wich turns on the generator.
    To do that, I want to link the switch and the computer with a serial port RS232 by using NI-USN 232 cable.
    I made some research on this subject and I am only a beginner on LabView but I would like to use one (or several) pin which will send 5V in voltage when I want.
    Is that possible? Is there another way to make it?
    Thanks in advance.

    Thank you for your answer.
    Maybe, I didn't explain myself correctly. 
    For example, on the Raspberry Pi, you can control a card by sending 3,3V signal with RS232 port (I made it last year so it makes a sense).
    What I want to do here is to control an electronic card that turns on my generator after. I don't have enough to buy a generator controlled unless you know one not very expensive.

  • Why are ribbon controls disabled even with full control?

    I have full control of both of my sites however the controls on the ribbon are disabled. If I use the drop down menu on the library or list item I can utilize those controls. Is there a setting I disabled? The sites have been set-up for about 6 months
    and now all of a sudden the controls are greyed out.
    Lyndsey

    Hi all:
    I am a site collection admin on my farm and I am facing similar issue.
    ON all the lists, the View item and Edit item is disabled in ribbon. Moreover, the same options are enabled when accessed the site from the server itself.
    Let me know if any body has any solution to the same.
    Regards,
    Joeprakash

  • Controlling a videoo with custom controls

    What is the best/proper way to pause a video?
    Should you use
    player.stop() -> player.start()?
    or maybe
    player.setRate(0.0f) -> player.setRate(1.0f)?
    or
    ???? (better to use a processor maybe?)
    Thanks.

    Most guitars don't have midi outs, there are only a few of them. There are however some midi interface for guitars. BTW you can also use knobs on midi controllers and yes you need a midi interface on your mac as well. If you get a device that translates audio into midi (I think Redsound used to make such a device) you could use that to create visualizations in Motion. And some of the effects you have in Motion can also be found in Quartz Composer which can be used to create itunes visualizations.

  • How do I show my keynote file on a dvd player and control the slides?

    how do I show my keynote file on a dvd player and control the slides with the skip or next chapter command on the dvd remote? when I export to quicktime, it changes slides on a timed basis. I want the chapter button on a dvd remote to act like a mouse click would.

    Hi Robert
    You have to export the individual slides from your Keynote presentation, and then import them into your DVD application.
    I use DVDStudioPro - it works fine this. I'm sure iDVD will be OK.Going via QT has never worked for me.
    Regards Robert
    G4(7 y.o)1.5GHz 1.25 GB Ram, 2x120GB intHD, orig AGP & Radeon 9200 PCI card   Mac OS X (10.4.8)   2monitors, CRT TV, FCP5.0.4, DVDSP4.1.1, STP1.1, Comp2.3, LT2.1, QT7.1.3

  • Hi gurus what is table control can explin with example

    hi gurus what is table control can explin with example

    TABLE CONTROL
    These are the screen elements used to display tabular data they can be called
    as screen tables( like STEP LOOP).To use table control we have to create it on the screen using SCREEN PAINTER(SE51) and declare a control variable of TYPE TABLEVIEW using CONTROLS statement in the ABAP program. We have to use LOOP .. ENDLOOP statement in both PBO and PAI with or without AT int_table parameter. IF AT int_table parameter is not used than we have to place a MODULE call between the LOOP...ENDLOOP statement to fill the screen table rows from the ABAP program in PBO and program our own scrolling functions
    using OK_CODE field.
    Having a parallel loop(at screen table rows & int table rows) by using parameter
    AT int_table makes the ABAP code simple.
    A special structure of type CXTAB_CONTROL is used to set/get various
    attributes of table control at runtime like CURRENT_LINE ,TOP_LINE.
    ABAP declaration
    CONTROLS: tab_con TYPE TABLEVIEW USING SCREEN nnnn
    Here tab_con is the same name we used in screen for the table control.
    This ABAP statement will declare a control variable that will be used to access
    the table control , and set it's various attributes like number of fixed columns(tab_con-FIXED_COLS) ,total number of records it will display(tab_con-LINES).It is of type CXTAB_CONTROL and is a deep structure(structure containing structures).
    REFRESH CONTROL tab_con FROM SCREEN nnnn
    This ABAP statement will initialize the table control on the screen nnnn to its initial values.
    PBO processingI
    n PBO we have to use the screen LOOP ...ENDLOOP statement , with or without
    intenal table.
    LOOP WITH CONTROL tab_con.
    MODULE fill_tab_con.
    ENDLOOP.
    Here a module should be called between the loop endloop statement to transfer
    data from th ABAP program to the screen table through a structure.This module
    should use the CURRENT_LINE attribute of the table control variable to get the
    current screen table record index to read the data from the internal table into a work area.
    e.g.
    READ TABLE int_table INDEX tab_con-CURRENT_LINE
    The record read will be placed in the header line of the internal table and will be available to the similarly named screen fields or if these are different it can be written explicitly. e.g.
    screen_field_name = int_table-field_name
    LOOP AT int_table INTO workarea WITH CONTROL tab_con CURSOR i FROM
    n1 TO n2.
    ENDLOOP.
    Here the module call is not required to fill the screen table.The CURSOR parameter is a integer of type I indicating which absolute internal table line
    should be the first to display on the table control .FROM n1 TO n2 can be used
    to restrict the starting line and ending line number of the internal table , they are of type SY-TABIX.
    In both cases before the LOOP statement a module should be called which
    is generally for setting of status ,in which we should fill the LINES attribute
    (tab_con-LINES ) of the control with the total number of internal table records,doing this ensures correct and automatic scrolling.
    The ABAP statement DESCRIBE TABLE int_table LINES lines can be used
    to get the total lines in an int table.
    PAI Processing
    We have to use LOOP ... ENDLOOP in PAI so that data can transfer fro table control to ABAP program. If we want to write changes to the data we should
    call a module between the LOOP ... ENDLOOP. The MODULE call to process user commands (SY-UCOM) should be called after the ENDLOOP statement.
    e.g.
    PROCESS AFTER INPUT
    MODULE mod AT EXIT-COMMAND.
    LOOP AT itab_table or LOOP "depending on whether we are using AT int_table
    MODULE modify_int_table.
    ENDLOOP.
    MODULE user_command.
    In the MODULE call modify_int_table we can use
    MODIFY int_table FROM workarea INDEX tab_con-CURRENT_LINE
    or we can use
    int_table-field_name = screen_field_name.

  • Adding numeric scale on CWGraph3D control

    I am using Measurement Studio for Visual C++. I have 2 questions;
    1. How do you add the numeric scale on CWGraph3D control? The color map style of the CWGraph3D control is set to color spectrum.
    2. How do you rotate the CWGraph3D control? I want to line it up horizontally.
    Thanks !

    Hi Irene,
    1. Are you referring to a x, y or z scale? You can add these both in property pages and programatically. Configure them by right-clicking on the graph and selecting Properties. On the Axes tab you can configure each of the axes. If you're referring to a scale telling what numeric values are associated with which colors then this is not something you can add automatically. You can however get the information that would be needed to create your own scale. The following post discusses this in some detail and gives an example in LabVIEW. You can use the ColorMapColors and ColorMapValues properties to obtain this information.
    _49_%24_6_&UCATEGORY_S=0&USEARCHCONTEXT_QUESTION_0​=3d+intensity&USEARCHCONTEXT_QUESTION_S=0> Is it p...
    2. You can rotate the graph from the property pages as well. Open the property pages and select the Graph tab and then the 3D tab. This tab allows you to rotate the 3D graph. You can also configure this programmatically.
    I hope this helps!!
    Regards,
    Sarah Miracle
    National Instruments

  • When unlocking my iphone with the camera slide, my volume controls won't work on video playbacks.  However, if I unlock the phone normally and open the camera roll I am able to watch my videos and control the volume.  Anyone else notice this?

    When unlocking my iphone 5 with the camera slide, my volume controls won't work on video playbacks.  However, if I unlock the phone normally and open the camera roll I am able to watch my videos with the control of the volume.  Anyone else notice this?
    Thank you.

    Who can help me what are the symbols of a moon and a lock with a partial circle around it not allowing me to turn on or off my phone

  • Tried to restart and reset but phone just turns on and displays larga date time with no slide to unlock control visible

    phone is locked up. turned off and tried tried reset several times, phone displays larger font date/time screen but no slide to unlock control is visible

    Try placing the iPod in ecovery mode and then restoring the iPod via iTunes.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore
    Next would beto wait for the battery to fully drain and the charge and try again.

  • How Stop Pop-Up Window: Allow Fullscreen With Keyboard Controls?

    How can I cause the cessation of the pop-up window that asks me, "Allow fullscreen with keyboard controls?" 
    In the last month or two (January- February of 2013), this black, semi-transparent pop-up has appeared every time I go to full screen in the game Battle Pirates on facebook.
    After numerous iterations, this confirmation request has become completely unneccessary and nothing more than an unwelcome annoyance.

    Tom,
    Moderators have the authority and privilege to mark answers as correct, in addition to the original posters. ANY moderator here could have marked it that way.
    The Bug report/Feature Request link is not a "vote" page per say, but a place to submit a request for a feature you'd like to see added or dropped from Flash Player. It's the best way to voice a concern or "wish" for a feature, since the development team reads the reports/requests. Management who'd make the decision to add or remove something won't read about it here. They WILL hear about it from development.

  • I can not control my cursor with the trackpad.  It moves randomly. It began after an Angry Birds update.  Anyone else have this problem?

    I have a late 2011 OS X Lion 10.7.4 that is only 6 months old.  For the first 4 months I had no problems, but then about 6 weeks ago I downloaded an Angry Birds update from the Apple App Store, and my problems began.  When playing Angry Birds the the new Angry Birds update for the first time the cursor began to jump around, moving on it's own as if someone else was controlling it.  After a few moments I became obvious I could not control the cursor with the trackpad. When I placed the tip of my finger gently in the center of the trackpad to try to hold the cursor still it becan switching from the game (desktop) to launchpad and mission control.  I then put the computer down so I was not even touching it, walked several feet away and the cursor still moved on it's own.
    I've done a lot of research over the last few weeks on related articles and realized this is a common problem with numerous different causes: PRAM settings,
    screen sharing, remote settings, having fingers accidently touch edges of trackpad, writst resting too close to trackpad, swollen battery, etc. and I don't think it's due to any of those issues.
    The problem came out of nowhere.  My computer stays at home, and is not used by anyone else.  At first it was just Angry Birds, but now it can happen at any time.  Sometimes hours or days go by when this does not happen, sometimes it happens so much I can't use the computer at all.  It can get so bad that I won't be able to click out of whatever I'm doing on my desktop, and I'll have to shut it down by holding the power button. 
    Has anyone else had this issue after updating Angry Birds?

    try a new/fresh apple brand cable and make sure it is the only usb cable in use. this worked for me, i noticed i had no problem with a lighting cable. i did a restore from scratch and from backup and it did not help me...and if you cant sync than you wont be able to get anything but apps back after the restore

  • Numerous Problems with New TV@nywhere Master

    Greetings all.  A few days ago, I purchased a TV@nywhere Master card.  I own two MSI mainboards and an MSI video card that I think are great, but so far this product has been nothing but junk.  I am having numerous problems with it that I have not been able to resolve:
    1.  The remote control just plain doesn't work.
    2.  I am unable to adjust the TV volume within the MSIPVR tuner software.  Turning it up and down or muting it does nothing.  However, whenever I exit the program, it mutes the line-in jack on my sound card and doesn't unmute it when I run the program again!  I have to run the Creative Surround Mixer and unmute the jack before I get any TV audio.
    3.  Originally when I booted up, the radio tuner kicked in with a fuzzy feed, even though the software was not running.  I had to run the software and exit it to make this stop.  I believe this has resolved itself.
    4.  The MSIPVR software seems very unstable.
    I have tried updating all the software from the official MSI drivers page and I also tried the unofficial releases of both the drivers and the MSIPVR 3.0 beta from this forum.  The 3.0 beta build seems even more unstable (though it is a beta so this is understandable), but none of my other problems have been resolved either.  I've perused the forums looking for ideas, but haven't found anything that's worked.  I've also tried all these steps on two different systems that I have with the same results.
    I'm really shocked that MSI would release such a low-quality product as most of their other things are quite well made.  I am looking to see if anyone has suggestions I can try to resolve this.  I am interested in keeping this card if these can be fixed, but if not, I'll be returning this unit and picking up something from ATI instead.  There's absolutely no reason for a card to be runnign this poorly and be in a shipping state.
    Below are my system specifications should they be of any help:
    AthlonXP 2800+ FSB333
    MSI K7N2 Delta-L nForce 2
    1024MB PQI PC3700 LL
    Sound Blaster Audigy
    ATI RADEON 9600XT
    Promise FastTrak TX2000
    2x40GB Western Digital 8MB (In RAID 0 Stripe)
    Windows XP Professional Service Pack 2
    All Latest Drivers/Updates for Windows and All Hardware

    Quote from: TunerFAQ on 17-February-05, 10:17:47
    One more note (great stuff Stu:))... with regards to the remote... try to give it a slight extra push into the socket :D.
    As stupid as it sounds, it happens :p... at least with me it did. I kept on trying to get the remote to work in the beginning, only to find out in the end that I hadn't played it ALL the way into the input socket. After the click, it worked.
    I hope you can get the sound stuff working though. That's definitely a pain :(. I'm personally having issues with the original card and new software now... but yeah, I shall wait on your feedback first:).
    OK, I've finally had some time to try out the various other suggestions that have been made and unfortunately, have met with no success.  I tried changing my audio to CD In on my Audigy which still has the same sound problems.  I also checked out the connection with the remote and it is in all the way.  Still no go on that one.  My power supply ratings are:
    +5V:  35A Maximum/0A Minimum
    +12V:  24A Maximum/0.8A Minimum
    +3.3V:  28A Maximum/0A Minimum
    -5V:  0.5A Maximum/0A Minimum
    -12V:  1.0A Maximum/0A Minimum
    +5V SB:  2.0A Maximum/0A Minimum
    At this point, I'm pretty much at my wits end.  If anyone has other ideas, I can entertain them, but tomorrow if I don't have this up, I'll be taking it back.  This card is demonstrating itself as just poorly designed and built.  Thanks for your help all!

  • Apple Wired keyboard with numeric keypad works for 10.5.6??

    Hello!
    I have a iBook G4 1 Ghz 256 mb of ram. I want the apple wired keyboard
    With numeric keypad. My iBook is running 10.5.6. Would this work on leopard?
    I don't care if the launch pad and mission control keys don't work since I have leopard.
    However, on the box it says that the minimum requirements
    Is 10.6.8 but some people say it'll work.
    Please Help!!!
    Thank You So Much

    ok thanks for the tip and yes i admit i didn't see that...
    but it seems a little weird to have to upgrade all the OS to Snow Leopard just to use a keyboard.
    That kind of new device should be configured through a driver to download...shouldn't it ?
    I presume there's no keyboard driver that can solve my problem.. ?
    so you confirm that if i pay for Snow Leopard and upgrade my OS, my keyword will definitely work correctly with my Mac Mini ?
    Thanks

Maybe you are looking for

  • My ipod touch keeps crashing and I need to recover it every time

    So this is the problem.. my ipod keep craching but a soft reset was all it needed. It used to happen every few weeks but now it's once or twice a week and once it's crashed, it goes in recovery mode. Now last time in an effort to isolate if it was a

  • Do I need Adobe Acrobat or just the Reader to fill in fields?

    Do I need Adobe Acrobat or just the Reader to fill in fields on PDF documents?

  • View Column info not displaying in Columns Tab

    Running XP SP2 and SQL Developer 1.5.1 5440 When looking at views that are using tables from another schema. I don't see any of the columns information. I have DBA role In rel 1.1.2.25 2579 I see them just fine. (Both loaded on machine right now) Is

  • Need information on sony MO disk CWO-1300B

    I have some Sony M.O. Disk 1.3 GB 1024 byte/sector Write-Once disk that I need to read and print the information from.  I do not have the equipment and need to know which external disk drive i need to purchase and if i will need any additional softwa

  • OSB callout libraries

    We are using API from REST/JAXB libraries in our Java callout code. Are there options other than the following Putting in server's classpath or $Domain_DIr\lib We have a callout jar that we wanted to add classes from the libraries and re-package The