Help with disabling Hourly Chime

Hi,
I recently purchased a Nokia e51 and noticed it chimes on the hour. Is there a way to disable this function?
Cheers,
Paul.
Message Edited by blackmerlin on 16-Jun-2008 12:47 PM

Actually, I have installed Mail for Exchange.
My girlfriend worked out the solution though, disable the email alert tone in
Tools -> Settings -> General -> Personalisation -> Tones
My guess is this is a "feature" of MFE.
Anywho, it's fixed now.
Cheers,
Paul.

Similar Messages

  • Help with disabling close icon of last opened tab in JTabbedPane

    Hello
    Would someone help me out ? I have 3 tabs opened in a JTabbedPane, each with close icon "X". I am looking for a way to tell my program: if the user closes 2 tabs and only 1 remain, disable the close icon "X" of the last opened tab so that the user is unable to close the last tab. I have searched the forum, most I have run into are how to create the close icon. Would someone give me some insight into how to go about doing this? or if you have come across a forum that discusses this, do please post the link. Also, I am using java 1.6.
    Thanks very much in advance

    On each close, look how many tabs are remaining open in the JTabbedPane (getTabCount).
    If there is only one left, set its close button to invisible. Something like this:
    if (pane.getTabCount() == 1) {
        TabCloseButton tcb = (TabCloseButton) pane.getTabComponentAt(0);
        tcb.getBtClose().setVisible(false);
    }

  • Please help with cron hourly

    I have following script in /etc/cron.hourly
    #!/bin/sh
    su -l archie -c "ssh -o TCPKeepAlive=no -o ServerAliveInterval=10 -o ExitOnForwardFailure=yes -n -N -T -R 10002:localhost:22 [email protected]"
    It's doing reverse ssh connection to linux.box, problem I have is that when it runs it doesn't go to the background any my cron.hourly job just stays in the process list:
    root      1904  0.0  0.2   2776  1188 ?        S    17:01   0:00 /bin/sh /usr/sbin/run-cron /etc/cron.hourly
    root      1905  0.0  0.2   2776  1152 ?        S    17:01   0:00 /bin/sh /etc/cron.hourly/reverse_ssh
    root      1906  0.0  0.1   2200   864 ?        S    17:01   0:00 su -l archie -c ssh -o TCPKeepAlive=no -o
    archie    1907  0.0  0.4   6072  2480 ?        R    17:01   0:00 ssh -o TCPKeepAlive=no -o ServerAliveInterval=10 -o
    How do I run reverse_ssh script so that run-cron releases it?
    Thanks very much for your help
    Regards,
    Tomas

    1. Doing this:
    command &
    exit 0
    will always be the same as doing this:
    command &
    2. You could include your entire script in the crontab line. But of course you don't need to.
    3. Since you're backgrounding the ssh tunnel (whether using '&' or by using the '-f' flag), cron will see the process _it_ started as having completed. So an hour later, it won't refrain from running the job again (it would refrain if the process it started were still running). So you're going to get repeated attempts to open this tunnel, even if it's already open. I guess they'll fail, since port 10002 on your server is already bound to the existing tunnel. But it may generate lots of error output? Are you having the output of your cron jobs mailed to the local owner of the job (this is the default)?
    4. If you wanted to keep the tunnel open all the time, and reopen it when it fails, what you're doing is one way to achieve that. If on the other hand you just want the tunnel open for a short time, you could change your ssh line from
    ssh -o TCPKeepAlive=no -o ServerAliveInterval=10 -o ExitOnForwardFailure=yes -n -N -T -R 10002:localhost:22 [email protected] &
    to
    ssh -o TCPKeepAlive=no -o ServerAliveInterval=10 -o ExitOnForwardFailure=yes -n -f -T -R 10002:localhost:22 [email protected] sleep 10
    This replaces the no-command switch "-N" with the command "sleep 10", and uses the "-f" flag instead of "&". It will hold the tunnel open for 10 seconds. If some other process uses the tunnel within 10 seconds, tunnel will continue to stay open until that process (and all other processes) stop using it. You can make the sleep for longer if you like.

  • Help with disabled ipad mini not simple solution please help

    My 10 year old has disabled his ipad mini - the pc it was synced to is broken so have downloaded itunes to a different pc - plugged in the ipad and get to the point where the box says "to allow access, please repond on your ipad" - this does nothing as the ipad is disabled and cannot access to allow access - i am literally going insane with this if anyone can help it would be really appreciated  

    Hello Whitewargers,
    We've an article that provides the options available and the relevant steps for restoring access to your iPad.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/HT1212
    Cheers,
    Allen

  • Need help with disabling fields or hiding rows based on previous field

    Hi,
    I have a report in a region.
    The report has five columns:
    Animal type_ Health Issues* Angel Grant Requested?* Granted?* Grant Response Date*
    Dog Fleas Yes Yes 02/04/2009
    Cat Fleas No
    The first time the screen is displayed only the Animal type_ Health Issues* Angel Grant Requested?* columns will appear.
    The user will make a selection for 'Angel Grant Requested' from the LOV ('YES', 'NO') and then click on the 'Submit' button.
    When the screen returns 'Angel Grant Requested?' will be grayed out so the user cannot change the selection. The user will make a selection for 'Granted?' using LOV ('YES, 'NO') and for 'Grant Response Date' using the calendar.
    {color:#ff0000}{color:#0000ff}Here is what I want to do...
    If the user selects 'NO' for 'Angel Grant Requested?' then I would like to do one of the following (which ever one is easiest to do) when the screen returns:
    1. Disable (gray out) the 'Granted?' and 'Grant Response Date' fields on the screen for the rows that have 'NO' for 'Angel Grant Requested?'
    so that the user cannot make any selection, AND update the HEALTH_ISSUES table to
    set grant_granted = 'N/A'
    grant_response_date = sysdate
    WHERE animal_issue_type_id = AI_ID;
    2. Do not display the rows that have 'NO' for 'Angel Grant Requested?'
    {color}
    Can you please provide code samples to do this?
    {color:#ff0000}*I tried to use javascript to gray out the columns, the problem I have is with the hidden f02 column (Angel Grant Requested) that I created on the report so that javascript could read the value. columns are being disabled as desired but the database table is not updating properly...*
    {color:#ff0000}*For the rows where the user selected 'YES' for 'Angel Grant Requested?' we need to update the table with the 'Granted?' and 'Grant Response Date' values. These values are somehow being put on the row where the user selected 'NO' for 'Angel Grant Requested?'.*
    This happens in the UPDATE_ISSUES PL/SQL after When :P6_DSP_REQUESTED = 'DSPGRANTED'{color}
    Below is the Javascript function that is in HTML HEADER:_
    </script>
    <script language="JavaScript1.1" type="text/javascript">
    function checkAngelGrant()
    var col2=document.forms[0].f02; /* angel grant requested */
    var col3=document.forms[0].f03; /* angel grant granted */
    var col4=document.forms[0].f04; /* grant response date */
    for (i=0;i<col2.length;i++)
    var col2Check = col2+.value; /* read the hidden angel grant requested field */+
    +/* checks the hidden angel grant requested field+
    if no then we need to disable the angel grant granted field and the angel response date field.
    if (col2Check == 'NO')
    +{+
    col3.disabled=true; /* angel grant granted (Yes No) */
    col4.disabled=true; /* angel response date
    Below is the UPDATEISSUES PL/SQL process that is run on After Submit:_*
    DECLARE
    ai_id NUMBER;
    vgrant_requested VARCHAR2(3);
    vgrant_grnted VARCHAR2(3);
    vgrant_respdate DATE;
    f01 = Animal Issue Type ID
    f02 = grant requested ('YES','NO')
    F03 = grant granted ('YES','NO')
    F04 = grant response date
    P6_DSP_REQUESTED = DSPGRANTED display region with grant_granted and grant_respdate
    P6_DSP_REQUESTED = DSPREQUESTED display region with grant_requested only
    P6_DSP_REQUESTED = BIFNOCHG cannot change any of the fields that have already been set
    BEGIN
    IF :P6_DSP_BEQUESTED = 'DSPREQUESTED' then -- Allow setting of grant_requested value only
    FOR i IN 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP
    ai_id := HTMLDB_APPLICATION.G_F01(i); -- animal_issue_type_id This is hidden
    vgrant_requested := HTMLDB_APPLICATION.G_F02(i); -- grant_requested (YES or NO)
    UPDATE HEALTH_ISSUE_TYPES
    SET grant_requested = vgrant_requested
    WHERE animal_issue_type_id = AI_ID;
    COMMIT;
    END LOOP;
    elsif :P6_DSP_REQUESTED = 'DSPGRANTED' then -- grant_granted and grant_response_date
    FOR i IN 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP
    ai_id := HTMLDB_APPLICATION.G_F01(i); -- animal_issue_type_id This is hidden
    vgrant_grnted := HTMLDB_APPLICATION.G_F02(i); -- grant_granted (YES or NO)
    vgrant_respdate := to_date(HTMLDB_APPLICATION.G_F03(i),'MM/DD/YYYY');
    UPDATE HEALTH_ISSUE_TYPES
    SET grant_granted = vgrant_grnted,
    grant_response_date = vgrant_respdate
    WHERE animal_issue_type_id = AI_ID;
    COMMIT;
    END LOOP;
    end if;
    END;

    It's actually three reports that get run during different stages of the screen.
    When the user first enters the screen the data is populated from the REQUESTED REPORT sql:
    SELECT hit.animal_issue_type_id, at.animal_type_desc, it.issue_type_desc, hit.grant_requested
    FROM health_issue_types hit, animal_types at,issue_types it
    WHERE hit.animal_type_id = at.animal_type_id
    AND hit.issue_type_id = it.issue_type_id
    AND hit.file_no = :P6_FILE_NO;
    The user will make a selection from the LOV select list (Yes, No) for the grant_requested field and then click on the Submit button.
    {color:#ff0000}*If the user selects 'NO' for this field then I want to disable the grant_granted and grant_response_date fields when the screen is populated from the ISSUES REPORT sql. If this cannot be easily done then I would like to hide the entire row when 'NO' has been selected for the grant_requested field.*{color}
    When the screen returns the data is populated from the ISSUES REPORT sql:
    ISSUES REPORT
    SELECT hit.animal_issue_type_id, at.animal_type_desc, it.issue_type_desc, hit.grant_requested,
    hit.grant_granted, hit.grant_response_date
    FROM health_issue_types hit, animal_types at,issue_types it
    WHERE hit.animal_type_id = at.animal_type_id
    AND hit.issue_type_id = it.issue_type_id
    AND hit.file_no = :P6_FILE_NO;
    At this point the grant_requested field will no longer be available for user modification. The user will make a selection from the LOV select list (Yes, No) for the grant_granted, and the grant_response_date fields and then click on the Submit button again.
    When the screen returns the data is populated from the ANIMAL DISPLAY ONLY REPORT sql:
    ANIMAL DISPLAY ONLY REPORT
    SELECT hit.animal_issue_type_id, at.animal_type_desc, it.issue_type_desc, hit.grant_requested,
    hit.grant_granted, hit.grant_response_date
    FROM health_issue_types hit, animal_types at, issue_types it
    WHERE hit.animal_type_id = at.animal_type_id
    AND hit.issue_type_id = it.issue_type_id
    AND hit.file_no = :P6_FILE_NO;
    At this point the grant_requested, grant_granted, and grant_response_date fields will no longer be available for user modification.
    {color:#0000ff}Thank you for taking the time to look at my problem.{color}

  • Need help with disabling the output excution command

    hey guys
    i'm doing an assignment in which user can input multiple lines. I'm using the scanner class. The problem i'm facing is that when user gives their input in multiple lines then it displays the asking input line even though it doesn't ask for new input because the pervious input stored in the memory. Please help me to disable it somehow. I understand the logic and everything but i can't find a way to disable that line. Here's my code:
    print("Please enter words to be converted into Swedish Chef or \"END\" to stop");
            inputText = input.nextLine();
            while (!inputText.equals ("END")  ) {
                // separate the text and punctuations
                removePunctuations();
                // translate all the input text
                for (int i = 0; i < inputWOP.length; i++ ) {
                   translateText(inputWOP);
    // display the translated text inculding all the punctuations
    printTranslatedText();
    System.out.println();
    /** the problem is on this line, logically it make sense that
    * this will be displayed until "END" isn't entered
    * but i want this line not to excute if there's multiple line input
    print("Please enter words to be converted into Swedish Chef or \"END\" to stop");
    inputText = input.nextLine();
    Please help me to solve this problem, thanks in advance!

    salubad,
    Do you really understand your logic? This is a classic while !EOF loop gone wrong... Examine your own code I'm sure you'll get it.
    /** the problem is on this line, //YEP
    logically it make sense that
    * this will be displayed until "END"
    isn't entered //DOES IT REALLY?
    * but i want this line not to excute if
    there's multiple line input //yep, just make it so.
    rint("Please enter words to be converted into Swedish
    Chef or \"END\" to stop");
    inputText = input.nextLine();
    Keith.

  • Need a little JavaScript help with disabling a select list in a tabular frm

    Hello Folks
    Here's the scenario.
    I have a tabular form which, subject to the setting of one Select List, I want to disable/enable another.
    I have got this far and it will disable a text item but not a select list..
    This is in the HTML header section for the page...
    <script type="text/javascript">
    function test(pThis)
    var currIndex = $('select[name="'+pThis.name+'"]').index(pThis);
    if (pThis.value=='2') {
    $('input[name="f02"]')[currIndex].style.backgroundColor = "LightGrey";
    $('input[name="f02"]')[currIndex].disabled=true;
    The report region is defined as...
    SELECT apex_item.text(1, ir.iot_rebate_type_id) iot_rebate_type_id
    ,apex_item.select_list_from_lov_xl(2,ir.rebate_currency,'LOV_CURRENCY_CODES') rebate_currency
    FROM iot_rebate ir
    WHERE ir.iot_agreement_id = :P303_IOT_AGREEMENT_ID
    The iot_rebate_type_id column has an Column Element Attribute set to...
    onchange="javascript:test(this);"
    As I say, if I define the rebate currency as a text item, the javascript works fine.
    Can anyone offer any suggestions?
    Many thanks
    Simon
    Application Express 4.0.2.00.07

    Simon Gadd wrote:
    Hi Vikram.
    That's great.
    I have the relevant items being set to diabled & grey (and also the reverse of this if the driving select list is changed back).
    As this is being used in a Tabular form, if I am calling pre-existing records which should be displayed with two of the select lists disabled, can you point me in the right direction to show the relevent select lists as disabled when the records are returned from the database?If you are using apex_item API set the disabled property into p_attributes parameter conditionally using a case statement in you sql statement
    Another option is you can use some javascript to loop through the tabular form array that runs on the onload of the page.
    Finally, if some columns are disabled, this invaludates the MRU process on the page. Is there a way to submit the page with some fields in the disabled state?Do that as per Roel's suggestion for this issue.
    Any input/pointers much appreciated.
    Simon

  • HT1212 Help with disable phone due to password

    Help, I have locked my self out of my iphone 4s. I tried so many times it forced the find my phone reset. I went through all those prompts and was able to get in however, when the phone locked I again could not get the password right and have managed to lock myself out again (i know i know I should have written it down). Anyhow, I tried to sysnc it with my itunes as it suggested online but itunes said it couldn't sync with my device because the device is lucked. Any suggestions / solutions would on how to solve this issue ?

    http://support.apple.com/kb/HT1808
    Regards.

  • Help with disabling Backup Assistant Plus

    Upgraded to ICS last week. Now since there is no Charge Only option when plugging in to PC via USB, is there a way to keep Backup Assistant Plus from always opening the page?

    I would recommend you use Google android services for you device. I have used Google in almost all of my phones and with never a problem. Backup assistant plus is not as stable or as easy to use as Google. Just set up a Google account if you don't have one already (and I'm sure you do) .  Give it a try  
    Do a Google backup
      1. Sign in to your Google's device, online account and go to settings.
      2. Personal, Backup and reset, and select both Backup my data and Automatic restore.
      3. Go to Settings, Personal, Accounts & Sync, and select your Google account.
      4. Select all of the option boxes listed, to ensure that all available data is synced.
      5. Though the specific procedure may slightly vary between Android devices, the process is generally the same.

  • Need help with disabled ipod

    my son forgot his password need to fix it before christmas please!!!!!

    It will need to be restored. http://support.apple.com/kb/ht1212

  • How can I get help with pending songs that have taken over 12 hours to fully download?

    How can I get help with pending songs that have taken over 12 hours to fully download?

    You can only suspend service for 3 months at a time (with or without payment) and only twice a year.

  • Help with 3d being disabled on Photochop CS6

    I have recently received an error message that indicates that my graphics card is not able to handle 3d-this has not been the case-I also have been able to utilize Poser 9 and Daz 3d without difficulies.  No the 3d portion of Photoshop CS 6 is disabled both on the 64 and 32 bit versions.  Any suggstions for what I believe to be an error?

    I  am at work now so, cannot check in with device manager.  I have a ATI Radeon 5770.  This is from memory and I believe it has 1 gig of ram.  I have been able to run Z Brush, Vue, Brice, Poser, Daz etc... with this card, so 3d does not seem to be the problem.  I have also been able to run CS6 3d before example: using the postcard function in a graphic that I made.
    John Waller <[email protected]> wrote:
    John Waller http://forums.adobe.com/people/John+Waller created the discussion
    "Re: Help with 3d being disabled on Photochop CS6"
    To view the discussion, visit: http://forums.adobe.com/message/5337813#5337813

  • Welcome. At the outset, I'm sorry for my English :) Please help with configuration Photoshop CS6 appearance. How to disable the background of the program so you can see the desktop. (same menus and tools) Chiałbym to be the same effect as CS5.

    Welcome.
    At the outset, I'm sorry for my English
    Please help with configuration Photoshop CS6 appearance.
    How to disable the background of the program so you can see the desktop. (same menus and tools)
    i wantto be the same effect as CS5.

    Please try turning off
    Window > Application Frame

  • Possible Issue with help for "disable property node"

    Hi, In Labview version 9.0 (32-bit) there seems to be a conflict between help info for the Enum constant  as applied to the disable property node . If I right click on a control variable and select create-> property node -> disable. If I then right click on disable -> help for disable, the help lists the following interger assignment 0 - Disable, 1- Disable and Greyed, 2 Enable. If however, I right click on the generated Enum constant and select properties -> Edit Items, the listing order is as follows; 0- Enable, 1- Disable, 2- Disable and Greyed. The latter assignment is how the Enum constant actually works. It appears that the help information may be incorrect.
    Regards,
    Pat    
    Solved!
    Go to Solution.

    Hi,
    I compared it with 8.2.
    In 8.2 creating a constant, indicator or control by right clicking on the "disabled" property node gave an object of type U8, which operates in accordance with the "help for disabled", ie
    0=Enable
    1=Disable
    2=Disable/grey
    In 9.0/2009 right clicking and creating on the property node gives an Enum (of datatype U8) with names/values in agreement with 8.2, and operation as in 8.2, BUT the "help for disabled" message says
    0=Disable
    1=Disable/grey
    2=Enable
    Thus I would agree that this is a documentation error, and the LabVIEW is correct.
    N.I. Can we have a CAR please?
    P.S. I do think that it is a good idea to have made the disabled property an enum, whilst maintaining compatability with previous code. I always wondered why it wasn't that way in earlier revisions.

  • TS1702 i have tried all of the above troubleshooting resolution to no avail. please help me with "MY HOURS" app

    hello all i have an issue with my hours app on my iphone4 when i touch to open it does not open, it flashes as if but then goes back to icon screen. whta the heck?

    Have you tried closing the app completely and seeing if it works when you re-open it ? From the home screen (i.e. not with the My Hours app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the My Hours app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the equivalent of a reboot.

Maybe you are looking for