How to switch and maintain switched

Hello,
I have to switch in "true" an indicator using an OK botton. I want that when i push the botton for the first time my indicator becomes "true" and remains "true" forever independently from the OK botton status... How can i do?
Thanks in advance
GM
Solved!
Go to Solution.

Something like this?
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
Attachments:
Latch ON.png ‏12 KB

Similar Messages

  • How to create and maintain a backup catalog, separate from default  location,  on and external HD

    How to create and maintain a backup catalog on a separate hd - separate from default location of the catalog?

    Simply copy the LR catalog backup file to another location. It’s quite small and only contains metadata e.g. your edit develop settings, keywords, captions, titles and camera exif data etc.
    The LR backup does not physically copy your image files. So make sure you have a separate system backup for your photo files and folders.

  • How to get and maintain Http persistent connection to get pushed data from

    At MangoSpring ,www.mangospring.com we are working on application which uses IMPS protocol where we always required to receive data pushed by server.
    To achive this we'll have to maintain one persistent Http connection on client side, so that we can be notified whenever some data is pushed by server.
    Reply With Quote

    our problem is :: " How to get and maintain Http persistent connection to get pushed data from Server "

  • How to improve and maintain performance of droid phones

    ive read bits and pieces about how to make the phones faster and stuff but whats the best way of improving  the phones performance without overclocking and putting on custom roms and maintaining that performance.

    Biggest thing to do is keep the cache cleared out the applications. I recommend once a week check depending on usage.
    Keep an eye on your internal storage. Any thing below 30mb needs some serious cleaning of applications, cache, call history, text messages, in that order. I try and keep my internal storage at 50 mb or higher.
    Also try and pay attention to your Dialer Storage. It holds the call history and text messages. But it can grow quickly. I found out the hard way. Had some ringtones saved in the text message thread but rarely looked at them. Then one weekend almost six months after I got, I was looking at the thread a lot because a new message had been sent from that number. The dialer storage went from 5mb to 21mb in a couple of days. Even after deleting the entire thread it only went down 1mb. There was no way to clear data for that app so I ended up doing a factory reset. Now Dialer Storage is a baby size of 64 kb!
    I never used a task killer only task managers.
    I have a battery monitor and have seen no big difference. However I don't use facebook or twitter so I don't have those constantly updating.

  • How to check and maintain authorization objects

    Hi  Alll            
    Let me knowhow to check and maintain authorization objects  in SU24 ECC 6.0.
    Thanks
    sathies

    Hi Sathies,
    the old check flags
    U
    Unmaintained
    No indicator set. The check for corresponding authorization object is always executed. Field values are not displayed in the Profile Generator.
    N
    No check
    Check disabled. Field values are not displayed in the Profile Generator. This indicator cannot be set for HR and Basis authorization objects.
    C
    Check
    Check always executed. Field values are not displayed in the Profile Generator. For example: Printer authorizations.
    CM
    Check/maintain
    Check always executed. Field values are displayed for changing in the Profile Generator (yellow light).
    Have been divided now in
    Checkindicator : Check/NoCheck
    and
    Proposal: Yes/No.
    If defaults=yes, then you can modify them after clicking on the apropriate button.
    Please refer to the online help for SU24 too.
    Although the look of su24 has been changed significantly, the technique behind it is still the same.
    Once you have pressed the 'edit'-button on the top left corner, additional editing options will appear in the right-top-frame.
    b.rgds,
    Bernhard

  • How to resize and maintain height and width ratio IR image column

    Hello, I am upgrading from 3.2 to 4.1 reports that include images in report columns. I have had good success with this except for one thing. If the height and width is fixed it distorts the photos, and if I do not have fixed dimensions the image may be too large depending on the original dimensions of the :P1_PHOTO item which is File Browse... BLOB column. I do not want to restrict users ability to upload large image files, or files with different dimensions, but I want them to display as a thumbnail size proportional to the original dimensions in the report, or maybe I need a different approach? Report region template is No Template. I appreciate any suggestions.
    select decode(nvl(dbms_lob.getlength(photo),0),0,null,'<img src="'||apex_util.get_blob_file_src('P1_PHOTO',id)||'" height="75" width="75"/>') photo from table.
    I tried using percent i.e.: width="10%" that does not work.
    I have tried several variations of <style> in page HTML header to change column width, but the image size does not change.
    <style>
    td[headers="PHOTO"] {
    width:75px;
    </style>
    <style>
    #apexir_PHOTO{width: 75px;}
    </style>
    Thanks.

    Try to go with max-width / max-height. However, if you have IE browser, hang on for pain. For some ideas, some links:
    http://wordpress.mfields.org/2011/scaling-images-in-ie8-with-css-max-width/ (ignore object-fit, it is not yet supported on most browser)
    http://stackoverflow.com/questions/3915219/max-width-on-img-tag-not-working-in-ie8
    etc. Be sure to try out your chosen solution on the target browser(s)!
    IE is just nasty :(
    What i have done before is not to have my browser scale my images, especially when the images can be large(r) and you expect quite some traffic. All those extra (kilo)bytes won't help it load faster. I just added an extra column in the table, like photo_thumb, and create a scaled version of the uploaded picture when it is being inserted.
    For example, i have the following process on my apex page, and i'm using wwv_flow_files.
    Have some code:
    IF :P3_FIND_PHOTO IS NOT NULL THEN
       DECLARE
         v_id number;
         v_small_photo blob;
         v_large_photo blob;
         v_mime_type apxt_contacts_img.mime_type%type;
         v_content_type apxt_contacts_img.content_type%type;
       BEGIN
          SELECT blob_content a, blob_content b, mime_type, content_type
          INTO v_small_photo, v_large_photo, v_mime_type, v_content_type
          FROM wwv_flow_files
          WHERE name = :P3_FIND_PHOTO;
          IF lower(v_mime_type) NOT IN ('image/jpg', 'image/jpeg') THEN
             raise_application_error(-20001, 'File for upload is not a jpg!');
          END IF;
          -- Rezise the photo so that it is proportionally 125*125
          -- ordimage is an oracle type able to manipulate all sorts of pictures
          ordimage.process(v_small_photo, 'maxScale=125 125');
          -- If contact is of type personnel, then no need to store
          -- a large photo since it wont be displayed
          IF :P3_CONTACT_TYPE_ID = 2 THEN
            v_large_photo := NULL;
          END IF;
          -- Delete previously uploaded picture
          IF :P3_ID IS NOT NULL THEN
             DELETE FROM apxt_contacts_img
              WHERE contact_id = :P3_ID;
          END IF;
          -- Insert the data into the contacts_img table as a
          -- SELECT from WWV_FLOW_FILES
          INSERT INTO apxt_contacts_img
          (contact_id,
           image_name,
           mime_type,
           content_type,
           filename,
           small_photo,
           large_photo)
          VALUES
          (:P3_ID,
           :P3_LASTNAME,
           v_mime_type,             
           v_content_type,
           :P3_FIND_PHOTO,
           v_small_photo,
           v_large_photo);
          -- Remove the image from the apex wwv_flows_files table
          DELETE FROM wwv_flow_files WHERE name = :P3_FIND_PHOTO;
       END;
    END IF;

  • HT201209 Please help, tried to redeem an App Store gift card for $15.00.  It worked when I put it in earlier but I was still charging purchases to my credit card.  I did not see how to switch over to the gift card.  Credit is gone and code now invalid.  W

    I need help with redeeming a $15 App Store certificate.  I tried to redeem earlier in the day and it was credited to my account.  I could not figure out how to switch payment from my credit card to the gift card credit.  Later on in the day I see the credit is completely gone and now the card is invalid.  Nothing was purchased with the gift card so I want to know where the credit went.  I also have$5 credited to my Apple ID from a past gift card that I can't access.  What can I do.  Is there a customer service number???

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • How to switch off scroll and zoom functions of touchpad on Satellite L

    Hi.
    Can anyone tell me how to switch off the scroll and zoom functions for the Synaptics Touchpad v7.2 .
    Can't seem to do it via the Control Panel.
    Any suggestions.

    Hi buddy,
    > Can't seem to do it via the Control Panel.
    You can only disable the virtual scrolling function if the touchpad driver is installed properly. The driver provides extended functions and allows you to disable/enable special features. If you dont have installed the touchpad driver download it on official Toshiba page:
    http://eu.computers.toshiba-europe.com > Support & Downloads > Download Drivers
    Then navigate to control panel as the previous user wrote for disabling the scroll function.
    Can you find it now?

  • I partitioned my Mac Book so I could have windows and now i don't know how to switch back it also doesn't tell me what I want to use when I reboot it. How do I switch back to OS X?

    I partitioned my Mac Book so I could have windows and now i don't know how to switch back it also doesn't ask me what I want to use when I reboot it. How do I switch back to OS X?

    At startuo hold down the Option key. That will bring up a boot menu screen.

  • How to switch off screen blocking if I forget password and couldn't use iTunes?

    How to switch off screen blocking if I forget password and couldn't use iTunes?

    If you are saying that you've forgotten the passcode to unlock the iPad then you will need to connect the iPad to the computer that you normally sync to and you should then be able to reset the iPad and restore/re-sync your content to it (http://support.apple.com/kb/HT1212) - you may need to put the iPad into recovery mode for your iTunes to be able to reset it : http://support.apple.com/kb/ht1808
    If you do it via a different computer then :
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.

  • TS2776 How to switch wifi on and the wifi address N/A?

    How to switch wifi on and the wifi address N/A iPhone 4s?

    LabVIEW 2013 has inbuilt Plot Visible selection in Plot Legand in Waveform Graph

  • TS1702 I'm trying to update Dropbox on my iPad and it says that my account is not valid in that country. It says to switch back to my home country. I don't know how it got switched in the first place or how to switch it back.

    I'm trying to update Dropbox on my iPad and it says that my account is not valid in that country. It says to switch back to my home country. I don't know how it got switched in the first place or how to switch it back.

    iOS: Changing the signed-in iTunes Store account
              http://support.apple.com/kb/HT1311

  • How to switch primary and recovery email on the adobe website

    how to switch primary and recovery email on the adobe website.  I am unable to switch my recovery e.mail with my main account e.mail.  how can i fix this

    http://forums.adobe.com/community/download_install_setup/creative_cloud_faq
    -has a link to manage your membership which may help

  • I have english and arabic key board, how to switch in between the 2 in writing e

    Hi, I have English and Arabic letters keyboard, how to switch between the 2 in writing

    can you see a flag on the top right corner if you click on that you can switch between the keyboards you have installed on your system

  • Hi. I tried switching my Apple ID email address to my new email address and I don't know how to switch it for iCloud and iTunes. Please help!! It seems like Apple thinks I have two separate accounts, when I just tried to simply change it!

    Hi. I tried switching my Apple ID email address to my new email address and I don't know how to switch it for iCloud and iTunes. Please help!! It seems like Apple thinks I have two separate accounts, when I just tried to simply change it!

    Settings > Store > Sign Out.
    Sign in with the correct ID.

  • I accedentally switched my iTunes to the UK store and I don't know how to switch it back. Can someone please help?

    I accedentally switched my iTunes to the UK store and I don't know how to switch it back. Can someone please help?

    Click here and follow the instructions to change the iTunes Store country.
    (105976)

Maybe you are looking for