Is it possible to hide led when it is in off condition?

I am using LabVIEW 2010. I have developed a program for the 7 segment display using led array. now it is completed, i want to hide the led in off condition. is it possible to hide led in off condition? if yes, how?

Yes, you just need to use property nodes.
Right click the LED then go: Create -> property node -> visible.
Then change the property node to write.
Then wire the same thing that is wired to the LED to the property node.
That way the LED will not be visible when the input is false.

Similar Messages

  • Case-when-then logic in join condition

    Is it possible to implement case when then logic in join condition?
    Instead of:
    INGRP1.COL1 = INGRP2.COL1 (+)
    something like:
    case
    when INGRP1.COL2 IS NULL
    then INGRP1.COL1 = INGRP2.COL1 (+)
    else INGRP1.COL3 = INGRP2.COL3 (+)
    end
    expression builder for join condition.
    Any help much appreciated.

    Hi Kaiser,
    this is my variant
    1) join first table with second table twice (define two input group in join, include second table in mapping twice and map them to appropriate join group)
    INGRP1.COL1=INGRP2.COL1(+) and INGRP1.COL3=INGRP3.COL3(+)
    2) after join calculate attributes from second table with expression like
    case when COL2 IS NULL the INGRP2_ATTR else INGRP3_ATTR end
    Maybe anyone has a better solution...
    Regards,
    Oleg

  • Is it possible to hide the yellow box that appears when you scroll over any object in the form?

    Is it possible to hide the yellow box that appears when you scroll over any object in the form? This box contains the item name or caption.

    Hi,
    Under Tools ... Options ... Workspace, there is an option "Display Object Name Tool Tips While Pointing".
    Try clearing that.
    Bruce

  • Possible to hide browse sequences?

    I have a few topics in my chm that do not contain browse
    sequences. They are standalone topics that do not appear in the TOC
    or index. When the help is called from the application, they are
    launched in the right pane of the chm. The problem I have is that a
    "default" browse sequence will still appear at the top of the chm
    even though the topics don't have any assigned browse sequences.For
    these topics, is it possible to hide the browse sequences from
    appearing?

    Hi Emmanuel
    Actually this should be possible. What you would do is to
    create a new window that would be used for your context sensitive
    calls. Then when your developer calls the help, they specify the
    window it should appear in. That window would be configured with no
    browse sequence bar.
    Cheers... Rick

  • Is it possible to hide the save function and only use the save as function in teststand

    Hi,
    When i'm done building a sequence i want to prevent other engineers to save the sequence with the same filename (or version number).
    Is it somehow possible to "hide" the save button and only use the save as function?
    Or is there another possiblity to solve my problem.
    The idea is to have a sequence called Sequence_V1.0.seq which i have build. When installing this in a factory enviroment I would like whenever there is a change needed in the sequence that the version number increases (manual action) (becomes Sequence_V1.1.seq). So from the moment you want to save i would like to only have the function save as. In this way you are obligated to fill in a new sequence name (original sequence will be read-only)
    What would even be great if there could be a log of what the changes were
    Thx!!! 

    1) You could mark the file as read-only, by default you would then not be able to save over it. The user could make it not read-only though if they know what they are doing.
    2) Another possibility is to lock the sequence file for editing (this is a teststand feature). Go to the Sequence File Property dialog, on the advanced tab, where it says Password Protection, set it to Not Editable and give it a good password. This doesn't however keep someone from saving another file to the same name as the locked one, but they at least won't be able to saved the locked file again without your password, nor will they be able to edit it.
    Hope this helps,
    -Doug

  • The possibility to hide for displaying a user status in work order

    Hello gurus,
    I have following issue:
    It is possible to hide only for displaying a user status in a work order when it's active?
    br,
    Laurentiu

    See my [recent post|https://forums.sdn.sap.com/click.jspa?searchID=25309331&messageID=7376021] which references user-exit STATTEXT.
    PeteA

  • How can I hide data when crossing 3 dimensions?

    I want to hide data when every member of Dimension B or C is crossed with every member of the dimension A
    This script hide data for all possible combinations except between Dimension A and dimension C
    scope(descendants([DimA].[DimA].[DimA Level 2].Members,0,SELF_AND_BEFORE));
    Scope(descendants([DimB].[DimB].[DimB Level 1].Members,0,SELF_AND_BEFORE));
    This=null;
    End Scope;
    Scope(descendants([DimC].[DimC].[DimC Level 4].Members,0,SELF_AND_BEFORE));
    This=null;
    End Scope;
    End Scope;

    EXTRACT(([DimA].[DimA].[DimA level 2].MEMBERS*[DimB].[DimB].[DimB level 1].MEMBERS*[DimC].[DimC].[DimC level 4].MEMBERS),[DimA].[DimA].[DimA level 2])
    http://msdn.microsoft.com/en-us/library/ms145980.aspx

  • Is it possible to hide the links in the DBI HRi module

    Hi All,
    Module: DBI HRi
    Is it possible to hide the links in the reports in DBI - HRi module.
    Example: Employee Details Report:
    when I open this report, it shows some of the links in the report below. i.e. Employee Absence Details.
    I would like to hide those links. Is it possible do the same with the standard functionality.
    Regards,
    GR.

    Hi,
    It would be great if you could share the solution with us.
    Thanks,
    Hussein

  • ALV  hide  column when no values

    Hi friends,
          Is it possible to hide a column in ALV  when there is no value for that column
    Thanks
    Chandra

    Yes by using the FM ALV_OPTIMIZE_OUTPUT you can acheive it
    ALV_OPTIMIZE_OUTPUT   :  Suppress Blank Columns in ALV Output
    Execute SE37 enter FM name
    Check the Function Module Documentation for more details

  • Hide keyboard when UITextField is selected

    I am able to hide the keyboard when the user clicks off of a uitextfield by using the [sender resignFirstResponder] command, but I want to hide it as soon as the user clicks inside the textfield. Is this possible?
    I have the uitextfield "Editing Did begin" etc etc set up to call a method and that is using the same commands ( [sender resignFirstResponder] ) but the keyboard never disappears? I can see the method is being called and the commands are being run but the keyboard just stays there.
    I want to call another method to change views when the user selects the uitextfield. The view changes but the keyboard is up and will not go away.
    Any suggestions?
    Thanks

    Well, I created a dummy custom button on my interface and when the textfield is selected this method gets called and the Log message is output to the console but the keyboard comes up and remains up no matter what. I tried to refocus to the button and resign the textfield as the firstresponder but no luck. Is this something just so apparently wrong with this code?
    -(IBAction)showDatePickers:(id)sender
    NSLog(@"Inside showDatePickers: %@", sender);
    [dummyButton becomeFirstResponder];
    [departureDate resignFirstResponder];
    //[[RootViewController sharedRootViewController] loadDatePickers:sender];

  • Is it possible to hide a forms user parameter in the wrapper HTML page?

    Is it possible to hide a forms user parameter in the wrapper HTML page? I.E I want to start my form with MODULE=myForm userid=scott/tiger@db myParameter=SECRET.
    The http://myserver/servlet/f60servlet?config=myconfig successfully starts the application (after update of the basejini.htm and adding this section to the formsweb.cfg
    [myconfig]
    userid=scot/tiger@db
    myParameter=SECRET)
    However, when looking at the source of the wrapper html page one can see MODULE=myForm userid= myParameter=SECRET.
    As you can see the userid is nicely hidden by my secret parameter is not.
    Thanks in advance for ideas for solving this…

    We logged a similar issue through Oracle support recently (hiding the password) and we did get a very unsatisfactory response :
    ====
    View source is the functionality for browser . So that can't be done.
    You have two possible workaround for your problem.
    1.
    Invoke Registry & move to HKEY_LOCAL_MACHINES >> SOFTWARE >> ORACLE. Here create a new string value with the name LOCAL & value as the connect string you want. Now when you run the form on web, just give user name & password, the form picks the connect string from Registry.
    Note : You need to make registry entry in a machine where Forms Server is running.
    2.
    You can hardcode the username, password & connect string in the form's ON-LOGON trigger. To do this use LOGON built-in.
    ====
    Should you receive a better response : we are also interested.

  • Is It Possible to Hide Applications on PPC Without the Icon Color Fade

    I use Apple + H to hide applications when i'm not using them but i'd like it for the icon not to change to a faded version of itself when i hide it. I know on my Intel Mac Mini it doesn't change the icon but i was wondering if it was possible on my iBook to have the same no-icon-change happen.

    Are you talking about the Dock icon for the app? If so, it doesn't do that here. Create a new admin user account, log into it, and see if the problem's gone. If so, then something's amiss with your Dock settings. If not, then it's system-wide and you might consider reinstalling the 10.4.2 COMBO update or, better yet, the 10.4.8 COMBO update.

  • Xperia Z2 orange blinking led when connected to magnetic charge cord

    Hey guys. I bought this phone off a friend. Its three months old and works great. But the other night I accidentally put the magnetic port on backwards and the phone completely died. I freaked out and tried every key combination possible. I eventually got a red led when I plugged in the microusb port. It turned on in about 10 minutes like normal.
    Now, when ever I attach the magnetic cord (properly) I get an orange led blinking and the device doesn't charge at all.
    What does the blinking orange led mean? Does warranty cover the magnetic port? Hopefully someone can help me
    Solved!
    Go to Solution.

    Hello everyone. I've was having issues with the magnetic charge port on my Z2. It simply did not want to charge the device. It also was heating up when it was charging through USB. Sometimes it wouldn't even charge!
    I was trying to get away with living with it until one day the phone turned off and never started back up for about a day.
    At this point I knew there was no other choice but to request an RMA to get these issues addressed.
    When I phoned in to tell them my issues, I told them specifically "THERE IS AN ISSUE WITH THE MAGNETIC PORT", "THE PHONE REFUSES TO CHARGE SOMETIMES" and "THE PHONE HEATS UP WHEN CHARGING".
    The rep on the other end told me several times he understands the problem and they will all be addressed when it arrives at the repair facility.
    So, I packaged the phone up and sent it off to Ontario (shipping cost me $40) and thought that once it comes back it'll work like it should.
    This is where I have never been more wrong.
    I got the phone back today and opened it up as soon as I could.
    First thing I did was try to turn it on. Absolutely nothing. No light, no low battery screen, nothing.
    So when I arrived home I plugged the thing into an AC USB charger. The first 10 minutes there was only a red LED and nothing else.
    After 10 minutes I was able to see the green battery on the screen.
    Another 5 minutes later, I was actually able to power up the phone. It was sitting at 2%.
    Which makes me believe that the phone was either left on or COMPLETELY discharged before shipping. Don't these people at the repair facilities know how damaging it is for a battery to be comepletely discharged???
    The second and most outrageous thing is the main reason the phone was sent it, wasn't even fixed!!!
    I tried plugging into the magnetic port charger (with an aftermarket cord, as well as the dock) and the phone is doing EXACTLY the same thing!!!
    In fact, this is an exact quote of what the work order says:
    "PHONE IS CHARGING AND IS WORKING GOOD. PLEASE SEND IN USB CABLE AND CHARGER IF PROBLEM P-" <- They didn't even finish the sentence.
    "Software Upgrade, Live Call Passed, Quality Control Passed"
    I am so totally outraged and disgusted with Sony right now.

  • I want the TOC to hide itself when a  slide chosen

    I would like TOC to hide itself when the user slected a slide to jump to. Is this possible?

    Not currently possible, but I've logged a feature request for something very similar to this.
    If you want to see something  like this in Cp6 you might also like to log one here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=5
    Every extra voice helps.

  • FB02, FB03 - Is it possible to hide button or prevent users reversing

    Hi All,
    Does anyone know if it is possible to restrict a user from reversing a document via FB02, FB03 ?
    Or if it is possible to hide the button when the user accesses the document
    Thanks
    Simon

    Hi Simon
    The best solution here will of course be to control this with the use of an authorization object - however I haven't got access right to any FI Systems at the moment, so I'm not sure if this is possible.
    If you can't find an authorization object that can be used, you can create a transaction variant for this in <b>SHD0</b>. In here you can deactivate functions/buttons - e.g. reversing.
    You can then set the variant as the default variant for your transaction (please notice that you can't transport this activation - you need to do it manually on the recieving systems) - or you can create another transaction for it in SE93.
    Regards
    Morten Nielsen.

Maybe you are looking for

  • Attachments in gmail app on iPad

    I've tried using the new app for gmail on my ipad - it has a white envelope edged in red: sorry, I don't even know how to describe it technically, but I think it's the Google app not the Apple app. Anyway, I hated it so ditched it and started using o

  • Connecting MIDI controller via USB

    Does anyone know how to connect a Roland SH-201 to a MacBook Pro via USB to use as a midi controller in Logic Express 8. I've installed the SH-201 driver, however I am getting a warning saying it is not compatible with an Intel based Macbook. Just so

  • Installing Itunes for osx 10.1.5

    hello, I've got osX 10.1.5. I've lost my Itunes and I try to install the version iTunes 4.0.1 from this link : http://docs.info.apple.com/article.html?artnum=120134 But it doesn't work. I've got I-tunes 2.0.4 on os9 but I want a better version to dow

  • Ask one/first time for password in Xcode/applescript app?

    Hello, I've an app, that's replacing/deleting/copying files a lot. The annoying thing is that each time finder (or gives my app finder the command to) replaces/deletes/copy files, finder(/my app) ask for the user password... And 'each time' is a lot

  • Unable to read Virtual PC 5 or 6 installation CDs

    My machine in unable to read Virtual PC installation CD's in Tiger (10.4.6). I have a Power Mac G4(1Ghz) with stock Super drive. In the same machine I was able to read the same CDs in Jaguar before. Now after a while the machine ejects the CD. Did an