Help with icon on n85 screen

Hi all.
Looking for help with an icon that appears at near the top left corner of my n85 screen (I'm new to S60's).  It appears when I'm either in a call using the keypad to dial a number.  Sometimes it's a small arrow/triangle in an orange/red background and other times it's a green background.
Does this have anything to do with call diverts??  Tried googling and the forums but can't find anything.
Thanks everyone.
J.

kali,
that will come up to show you when you have something Java running. To close out of that once it is open, is to close out of all of your browser (IE for example) windows to reset the Java runtime environment.
MT

Similar Messages

  • Help with Refreshing and Calling Screens

    Hi everyone.  I have somewhat of a simple ABAP program in which the user will enter data on Selection-Screen 1000.  This will then be loaded into an Object Oriented ALV Grid for display purposes only (screen 0100).  At any time, the user may use the back button on the ALV Grid Screen; which will take them from screen 0100 to screen 1000(Selection Screen).  Lets assume the user does not want to go back to the original selection screen from the ALV Grid Screen; they entered the information correctly and want to continue processing using a custom button I've created which will continue to process the record of data into a BW ODS.  This process works, but now I would like to use the write statement once the custom button is clicked to show a summary of the data I am inserting into the ODS after the data has been inserted.  The problem is, the title of the ALV Grid still shows and the Write statement is processed, but not shown on the screen.  I've been trying to refresh the screen with set screen and call screen combinations, but no luck.  Any Help would be appreciated.  Thanks!
    Here is a sample of the code below:
    *& Report  ZINC_DSP_SALES_INCRASE
    REPORT  ZINC_DSP_SALES_INCREASE MESSAGE-ID zsm.
    INCLUDE <icon>.
    DATA: credit_itab type standard table of /bic/azincosvi00,
          wa_credit like line of credit_itab,
          alv_itab type standard table of /bic/azincosvi00,
          wa_alv like line of alv_itab.
    DATA: ok_code LIKE sy-ucomm,
          save_ok LIKE sy-ucomm,
          incent type table of /bic/azincosvi00,
          g_container TYPE scrfname VALUE 'Increase DSP Sales',
          grid1 TYPE REF TO cl_gui_alv_grid,
          gs_layout TYPE lvc_s_layo,
          g_custom_container TYPE REF TO cl_gui_docking_container.
    DATA: active_guid like /bic/mzguid_dsr,
          UNIQUEKEY LIKE /BIC/AZINCOSVI00-/BIC/ZRCRDKEY,
          rpt_per_rec like  /BIC/MZRPTPRDCR,
          dsrcode like /bic/mzdsrcode-/bic/zdsrcode,
          payrec like /bic/mzsubcode.
    CLASS lcl_event_receiver DEFINITION DEFERRED.
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
        handle_toolbar
            FOR EVENT toolbar OF cl_gui_alv_grid
                IMPORTING e_object e_interactive,
        handle_user_command
            FOR EVENT user_command OF cl_gui_alv_grid
                IMPORTING e_ucomm.
        PRIVATE SECTION.
    ENDCLASS.
    CLASS lcl_event_receiver IMPLEMENTATION.
    This will create the toolbar
      METHOD handle_toolbar.
       DATA: ls_toolbar  TYPE stb_button.
       CLEAR ls_toolbar.
       MOVE 3 TO ls_toolbar-butn_type.
       APPEND ls_toolbar TO e_object->mt_toolbar.
    append an icon to show booking table
       CLEAR ls_toolbar.
       MOVE 'CREATE' TO ls_toolbar-function.
       MOVE ICON_OKAY TO ls_toolbar-icon.
       MOVE ' ' TO ls_toolbar-disabled.
       APPEND ls_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.
    METHOD handle_user_command.
      CASE e_ucomm.
      WHEN 'CREATE'.
      Insert /bic/azincosvi00 from wa_credit.
      CALL METHOD grid1->free.
      SET SCREEN '200'.
      WHEN 'OTHERS'.
      " DO NOTHING
      ENDCASE.
      ENDMETHOD.
    ENDCLASS.
    Data: event_receiver TYPE REF TO lcl_event_receiver.
    START-OF-SELECTION.
    Selection-Screen BEGIN OF BLOCK 1 with frame title text-001.
    Parameters:  start   like /bic/azincosvi00-BILL_DATE.
    Selection-Screen END OF BLOCK 1.
    Selection-Screen BEGIN OF BLOCK 3 with frame title text-003.
    Parameters: guid         type /BIC/OIZGUID_DSR,
                pcode        type /BIC/OIZPGMCODE,
                scode        type /BIC/OIZSUBCODE,
                reason       type /BIC/OIZEXCPTC,
                quantity(5)  type n,
                discount     type /BI0/OISUBTOTAL_4.
    Selection-Screen END OF BLOCK 3.
    END-OF-SELECTION.
    IF quantity <> '00000'.
       if pcode <> 'SCTMS'.
          message e000 with 'Quantity can only be used with seating spiff'.
       endif.
    ENDIF.
    GET REPORT PERIOD INFO using today's date.
      select single * from /bic/mzrptprdcr INTO rpt_per_rec
          where calyear  = sy-datum(4)
            and /bic/zpgmcode  = pcode
            and ( /BIC/ZRPPRDSTR <= start
                  and /BIC/ZRPPRDEND >= start ) .
      if sy-subrc <> 0.
        message e000 with
        'Report Period NOT FOUND for' pcode ' ' sy-datum(4).
      endif.
    Select Active Guid based upon user entry on selection-screen
    Select single * from /bic/mzguid_dsr into active_guid
                                      where /bic/zguid_dsr = guid
                                      and   /bic/zdsrstat = 'A'.
        If sy-subrc <> 0.
        MESSAGE e000 WITH 'Please enter a valid GUID'.
        ENDIF.
    Select DSR Code based upon a valid guid entered
    Select single /bic/zdsrcode from /bic/mzdsrcode into dsrcode
                                     where /BIC/ZGUID_DSR = guid
                                     and   /BIC/ZDSRCDST = 'A'.
        If sy-subrc <> 0.
        MESSAGE e000 WITH 'GUID entered does not have an active dsr code.'.
        ENDIF.
    Select MAX( /BIC/ZRCRDKEY ) FROM /BIC/AZINCOSVI00 INTO WA_CREDIT-/BIC/ZRCRDKEY.
    UNIQUEKEY = WA_CREDIT-/BIC/ZRCRDKEY + 1.
    WA_CREDIT-/BIC/ZRCRDKEY = UNIQUEKEY.
    WA_CREDIT-PO_NUMBER = UNIQUEKEY.
    WA_CREDIT-/BIC/ZERDAT = SY-DATUM.
    WA_CREDIT-BILL_DATE = SY-DATUM.
    WA_CREDIT-/BIC/ZRPPRDSTR = rpt_per_rec-/BIC/ZRPPRDSTR.
    WA_CREDIT-/BIC/ZRPPRDEND = rpt_per_rec-/BIC/ZRPPRDEND.
    WA_CREDIT-/BIC/ZCUBPRCDT = SY-DATUM.
    WA_CREDIT-/BIC/ZRPTPRDCR = rpt_per_rec-/BIC/ZRPTPRDCR.
    WA_CREDIT-/BIC/ZINCPYPRC = '00000000'.
    WA_CREDIT-/BIC/ZGUID_DSR = ACTIVE_GUID-/bic/zguid_dsr.
    WA_CREDIT-/BIC/ZDSRCODE = dsrcode.
    WA_CREDIT-/BIC/ZPGMCODE = PCODE.
    WA_CREDIT-/BIC/ZUNASSIGN = 'N'.
    WA_CREDIT-/BIC/ZSUBCODE = SCODE.
    WA_CREDIT-/BIC/ZSITE_ICR = ACTIVE_GUID-/BIC/ZSITE_IRG.
    WA_CREDIT-/BIC/ZSUSPEND = 'N'.
    WA_CREDIT-/BIC/ZSUSPNDR = ' '.
    WA_CREDIT-/BIC/ZSITE_IRG = ACTIVE_GUID-/BIC/ZSITE_IRG.
    WA_CREDIT-/BIC/ZSITE_CST = ' '.
    WA_CREDIT-/BIC/ZINCBONUS = '0.00'.
    WA_CREDIT-STAT_CURR = 'USD'.
    WA_CREDIT-DOC_CURRCY = 'USD'.
    WA_CREDIT-SALES_UNIT = 'ST'.
    WA_CREDIT-CALYEAR =  SY-DATUM(4).
    WA_CREDIT-/bic/ZCASEID = SY-UNAME.
    WA_CREDIT-/bic/ZSLSRSN = REASON.
    WA_CREDIT-RECORDMODE = ' '.
    *Depending on Program Code, populate the amounts to be paid.
    Data: fivepercent type p.
          fivepercent = '0.05'.
    If pcode = 'SCW5S' or pcode = 'SCTMS'.
    Select single * from /bic/mzsubcode into payrec
                         where /bic/zpgmcode = pcode
                         and /bic/zsubcode = scode
                         and CALYEAR = sy-datum(4).
          if sy-subrc <> 0.
            write: / '**************  ERROR  ***********************',
                   / '** Missing Program Information for ',
                   /  pcode,
                      scode,
                      sy-datum(4),
            exit.
            endif.
    ENDIF.
    If pcode = 'SCW5S'.
    WA_CREDIT-/BIC/ZINCUSDDS = discount.
    WA_CREDIT-/BIC/ZPAYAMTUS = WA_CREDIT-/BIC/ZINCUSDDS * payrec-/bic/zpayper / 100.
    WA_CREDIT-SUBTOTAL_4 = discount.
    WA_CREDIT-/BIC/ZINC_QTY = ' '.
    Endif.
    If pcode = 'SCTMS'.
    WA_CREDIT-/BIC/ZPAYAMTUS = quantity * payrec-/bic/zpayper / 100.
    WA_CREDIT-/BIC/ZINCUSDDS = '0.00'.
    WA_CREDIT-SUBTOTAL_4     = '0.00'.
    WA_CREDIT-/BIC/ZINC_QTY = quantity.
    Endif.
    If pcode = 'SCTB'.
    WA_CREDIT-/BIC/ZPAYAMTUS = '0.00'.
    WA_CREDIT-/BIC/ZINCUSDDS =  DISCOUNT.
    WA_CREDIT-SUBTOTAL_4 =  DISCOUNT.
    WA_CREDIT-/BIC/ZINC_QTY = ' '.
    Endif.
    *Create ALV Grid to show the user what the record will look like in which they are creating.
    Append wa_credit to alv_itab.
    CALL SCREEN 100.
    *&      Module  PBO  OUTPUT
          text
    MODULE alv_pbo OUTPUT.
      SET PF-STATUS 'MAIN100'.
      SET TITLEBAR  'MAIN100'.
      IF g_custom_container IS INITIAL.
    CREATE OBJECT grid1
    EXPORTING i_parent = g_custom_container.
        CALL METHOD grid1->set_table_for_first_display
          EXPORTING
            i_structure_name = '/bic/azincosvi00'
           CHANGING
            it_outtab        = alv_itab.
        CREATE OBJECT event_receiver.
        SET HANDLER event_receiver->handle_user_command FOR grid1.
        SET HANDLER event_receiver->handle_toolbar FOR grid1.
        CALL METHOD grid1->set_toolbar_interactive.
      ENDIF.
    ENDMODULE.                 " PBO  OUTPUT
    *&      Module  PAI  INPUT
          text
    MODULE alv_pai INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
        WHEN 'CANCEL'.
          LEAVE PROGRAM.
        WHEN 'BACK'.
          CALL METHOD grid1->free.
          CALL SELECTION-SCREEN '1000'.
        WHEN OTHERS.
        " DO NOTHING.
      ENDCASE.
    ENDMODULE.                " PAI  INPUT
    *&      Module  200_PBO  OUTPUT
          text
    MODULE 200_PBO OUTPUT.
      Write at 5: 'Increase DSP Sales'.
      Skip 1.
      Write at 5: 'USER'.
      Write at 15:'PROGRAM CODE'.
      WRITE AT 25:'SUB CODE'.
      WRITE AT 37:'DISCOUNTED SALES'.
      WRITE AT 67:'PAY AMOUNT US'.
      WRITE AT 80:'REASON'.
    ENDMODULE.                 " 200_PBO  OUTPUT

    There are some problems with ok_code, you need to assign sy-ucomm at each module.  Also the main problem was that you needed leave to list-processing and suppress dialog before writing.  However, when you do this the screens calls change a little. You also needed to use the container correctly.  Apply the correctons below and you'll be all set. Unfortunaley you will have to play around with calling the sel. screen (1000) from screen 100, I don't think call sel. screen 1000 will work properly there (you might need a custome screen instead).  The user may be okay with kicking back out to sa38 after the alv display, however.  Good luck and don't listen to the clowns' comments above. I once worked in that circus,    Hey Guys.
    Instead of this:
    METHOD handle_user_command.
    CASE e_ucomm.
    WHEN 'CREATE'.
    Insert /bic/azincosvi00 from wa_credit.
    CALL METHOD grid1->free.
    SET SCREEN '200'.
    WHEN 'OTHERS'.
    " DO NOTHING
    ENDCASE.
    ENDMETHOD.
    <b>DO THIS:</b>
      METHOD handle_user_command.
        CASE e_ucomm.
          WHEN 'CREATE'.
            Insert /bic/azincosvi00 from wa_credit.
            CALL SCREEN 200.
          WHEN 'OTHERS'.
            " DO NOTHING
        ENDCASE.
      ENDMETHOD.                    "handle_user_command
    <b>Instead of this:</b>
    *Create ALV Grid to show the user what the record will look like in which they are creating.
    Append wa_credit to alv_itab.
    CALL SCREEN 100.
    <b>DO THIS:</b>
      IF g_custom_container IS INITIAL.
        CREATE OBJECT g_custom_container EXPORTING dynnr = '100'
                                          repid = sy-cprog
                                          ratio = '95'.
      ENDIF.
      IF grid1 IS INITIAL.
        CREATE OBJECT grid1 EXPORTING i_parent = g_custom_container.
      ENDIF.
      CREATE OBJECT event_receiver.
      SET HANDLER event_receiver->handle_user_command FOR grid1.
      SET HANDLER event_receiver->handle_toolbar FOR grid1.
      SET SCREEN 100.
      CALL SCREEN 100.
    <b>Instead of this:</b>
    MODULE alv_pbo OUTPUT.
    SET PF-STATUS 'MAIN100'.
    SET TITLEBAR 'MAIN100'.
    IF g_custom_container IS INITIAL.
    CREATE OBJECT grid1
    EXPORTING i_parent = g_custom_container.
    CALL METHOD grid1->set_table_for_first_display
    EXPORTING
    i_structure_name = '/bic/azincosvi00'
    CHANGING
    it_outtab = alv_itab.
    CREATE OBJECT event_receiver.
    SET HANDLER event_receiver->handle_user_command FOR grid1.
    SET HANDLER event_receiver->handle_toolbar FOR grid1.
    CALL METHOD grid1->set_toolbar_interactive.
    ENDIF.
    ENDMODULE. " PBO OUTPUT
    <b>DO THIS:</b>
    MODULE alv_pbo OUTPUT.
      SET PF-STATUS 'MAIN100'.
      SET TITLEBAR  'MAIN100'.
    CALL METHOD grid1->set_table_for_first_display
      EXPORTING
         i_structure_name = '/bic/azincosvi00'
      CHANGING
         it_outtab = alv_itab.
      CALL METHOD grid1->set_toolbar_interactive.
    ENDMODULE.                 " PBO  OUTPUT
    <b>Instead of this:</b>
    MODULE alv_pai INPUT.
    save_ok = ok_code.
    CLEAR ok_code.
    CASE save_ok.
    WHEN 'EXIT'.
    LEAVE PROGRAM.
    WHEN 'CANCEL'.
    LEAVE PROGRAM.
    WHEN 'BACK'.
    CALL METHOD grid1->free.
    CALL SELECTION-SCREEN '1000'.
    WHEN OTHERS.
    " DO NOTHING.
    ENDCASE.
    ENDMODULE. " PAI INPUT
    <b>DO THIS:</b>
    MODULE alv_pai INPUT.
      ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
        WHEN 'CANCEL'.
          LEAVE PROGRAM.
        WHEN 'BACK'.
          CALL METHOD grid1->free.
          LEAVE PROGRAM.
    *       CALL SELECTION-SCREEN '1000'.
        WHEN OTHERS.
          " DO NOTHING.
      ENDCASE.
    ENDMODULE.                " PAI  INPUT
    <b>Instead of this:</b>
    MODULE 200_PBO OUTPUT.
    Write at 5: 'Increase DSP Sales'.
    Skip 1.
    Write at 5: 'USER'.
    Write at 15:'PROGRAM CODE'.
    WRITE AT 25:'SUB CODE'.
    WRITE AT 37:'DISCOUNTED SALES'.
    WRITE AT 67:'PAY AMOUNT US'.
    WRITE AT 80:'REASON'.
    ENDMODULE. " 200_PBO OUTPUT
    <b>DO THIS:</b>
    *Take care of all your list output here
      LEAVE TO LIST-PROCESSING.
      SET PF-STATUS 'MAIN200'.
      SET TITLEBAR  'MAIN200'.
      SUPPRESS DIALOG.
      WRITE AT 5: 'Increase DSP Sales'.
      SKIP 1.
      WRITE AT 5: 'USER'.
      WRITE AT 15:'PROGRAM CODE'.
      WRITE AT 25:'SUB CODE'.
      WRITE AT 37:'DISCOUNTED SALES'.
      WRITE AT 67:'PAY AMOUNT US'.
      WRITE AT 80:'REASON'.
    ENDMODULE.                 " 200_PBO  OUTPUT
    <b>Add Moule:</b>
    MODULE 200_pai INPUT.
      ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
        WHEN 'CANCEL'.
          LEAVE PROGRAM.
        WHEN 'BACK'.
          CALL SCREEN 100.
        WHEN OTHERS.
          " DO NOTHING.
      ENDCASE.
    ENDMODULE.                 " 200_PAI  INPUT

  • Help with fitting text in screen

    Could anyone help me with figuring out how I can get the full
    page of the Webkinz home page to fit on the screen with Adobe Flash
    Player 9? Is there another program to allow it to fit on the
    screen? Minimizing the screen size does not work.

    Could anyone help me with figuring out how I can get the full
    page of the Webkinz home page to fit on the screen with Adobe Flash
    Player 9? Is there another program to allow it to fit on the
    screen? Minimizing the screen size does not work.

  • Help with moving between custom screens in a Standard Transaction

    All,
    I'm working with a standard transaction, but in this transaction, the I'm having 2 tabs of customized screens. In each of the screen, I have 1 mandatory fields to be filled. If the user only fill in the mandatory field of the first screen and click save, I need to display an error message and also display the second screen automatically? How can I do this? I tried to use CALL SCREEN 9200 but the system keep displaying the error "Screen SAPLXQQM 9200 must not be in Include screen".
    Can anyone help me on this one? Thanks in advance.

    You must don't calling screen 9200. I mean delete lines code
    CALL SCREEN 9200.
    from your program.
    This code can be placement in screen fiew logic only!
    Instead, set code of needed tab of tabstrip using FM. Program process this command and automaticly call tab with your 9200-subscreen.

  • Help with stop sign on screen - please!

    My hard drive has packed up and I have a new one which I have formatted on another G5.
    When I start up now I get a folder with a flashing question mark in it.
    If I insert my copy of panther then the disk spins and the screen goes to the apple grey screen, but then comes up with a stop sign and I can't proceed any further.
    I have tried holding down C when booting up and also alt which brings up a blue screen which shows the osx disc but then it just goes to the stop sign when I proceed.
    Please help, why won't the operating system load on?
    Because the old hard drive is broken, I only have internet at work.

    Hi Kevin, and a warm welcome to the forums!
    While you may get help or a solution here, It's quite acceptable to start a new topic of your own, certainly feel free to start a new topic to attract more helpers to your particular situation, here's a link if as is often the case, it's hard to find out where to do it...
    http://discussions.apple.com/post!default.jspa?forumID=596
    Or the iMac G5 forum where I don't hang out, but many hood helpers there...
    http://discussions.apple.com/post!default.jspa?forumID=134
    The we are hanging here is a Kernel Panic, usually in your situation a wrong Install Disc, bad Disc, or bad Reader.
    Do you have another Mac with Firewire around?

  • Help with Noika N73 Full Screen Wllpaper?

    Hi there all i am new to this forum. I am glad I have found this because it is a huge help for people who love their Nokia's lol.
    I have a problem with my nokia n73.
    Phone Details:
    Model: Nokia N73
    Version: v 3.0704.1.0.1
    RM-133.
    I have just had this phone sent back from nokia. They reported it had a software problem which is now resolved. I am unable to use my Pictures and a Full Screen Wallpaper.
    All help is much appreciated
    Many Thanks
    Jassi

    ok. now you should take a picture from your camera LARGE picture--select it from camera settings and then set it as wallpaper. this is not at all a software issue. its just got something to do with your picture size.
    try downloading pictures from the net specific to your n73 phone screen size and they will work out best !
    What's Worth Doing, Is Worth Doing Well!
    All "N-series" are incredible!

  • Help, ringer icon always on screen

    How do I remove the ringer icon off my iPhone 4S screen ? I have already tried pressing the sleep, home buttons and it has not helped.

    Have you tried resetting the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.

  • Need Help With Pantech Crux Touch Screen

    I don't know if this is the right forum, 95% of the forums seem to be for billing or arbitray things. So, if this isn't please refer me to the correct place for this post.
    I have had a Pantech Crux for about 6 months now. About three months ago, the touchscreen stopped working. A section right in the middle refused to allow me to press it. If you were looking at the keyboard, it is the RTYGH section of the phone. It clicks way off to the right, or refuses to click at all. Now, 3 months ago a friend made a suggestion that I wait until the battery died and just restarted. Once I did this, it worked fine, and I chocked the issue up to software.
    Now, it has been plaguing me for three weeks, I have let my phone uncharge to zero, erased the entire thing and set the phone to factory settings, I have attempted to clean the screen using certified safe cleaner, all to no avail. What I need to know, from anyone, is A) is this a possible software fix that I can fix? B) if the screen is broken, how much am I looking at to get it fixed?
    Honestly, I am beginning to think the pantech curx being listed at near 300.00 without a 2 year warranty is ludicrous and borderline highway robbery. I've enjoyed this phone for the last three months, but if this keeps up the temptation to literally rip it in half and go get a NET10 phone will be too much to withstand. Honestly, I can't text,  I can't use the calculator, or any programs. Any and all help would be most appreciated.
     

    lpseudonyml wrote:
    I don't know if this is the right forum, 95% of the forums seem to be for billing or arbitray things. So, if this isn't please refer me to the correct place for this post.
    I have had a Pantech Crux for about 6 months now. About three months ago, the touchscreen stopped working. A section right in the middle refused to allow me to press it. If you were looking at the keyboard, it is the RTYGH section of the phone. It clicks way off to the right, or refuses to click at all. Now, 3 months ago a friend made a suggestion that I wait until the battery died and just restarted. Once I did this, it worked fine, and I chocked the issue up to software.
    Now, it has been plaguing me for three weeks, I have let my phone uncharge to zero, erased the entire thing and set the phone to factory settings, I have attempted to clean the screen using certified safe cleaner, all to no avail. What I need to know, from anyone, is A) is this a possible software fix that I can fix? B) if the screen is broken, how much am I looking at to get it fixed?
    Honestly, I am beginning to think the pantech curx being listed at near 300.00 without a 2 year warranty is ludicrous and borderline highway robbery. I've enjoyed this phone for the last three months, but if this keeps up the temptation to literally rip it in half and go get a NET10 phone will be too much to withstand. Honestly, I can't text,  I can't use the calculator, or any programs. Any and all help would be most appreciated.
    Hi lpseudonyml,
    I am sorry to learn that your phone is not working properly; I would be frustrated if I had the issues outlined on your post with my phone. Since you have already done several troubleshooting steps including a factory reset, I would consider replacing the phone. The best part is that your phone is only 6 months and is still within the one year manufacturers warranty and can be replaced at no cost to you. Please keep in mind that if phone has sustained liquid damage or physical damage the warranty is voided and phone cannot be replaced for free by the warranty program. For details on processing your warranty replacement please visit the link below:
    Certified Like-New Replacement Warranty Program
    If your phone does not qualify for a warranty replacement due to liquid or physical damage you can get a Certified Pre-Owned phone at a discounted price. Please visit link below for details:
    Certified Pre-Owned Replacement Program

  • Please help with bypassing bootup selection screen. MB:MSI Z68A-GD80

    Hi Guys,
    I was wondering if you could help me bypass the boot-up selection choices screen and go directly into Windows.  
    My MB is MSI Z68A-GD80.    I want to remote control this pc, but with the selection boot option screen keeps coming up after rebooting, it might not work.
    Is there a setting somewhere to disable this and go directly to Windows?  I tried different setting in the Setting menu, but not working.
    Thanks in advance!
    Rich

    Enter BIOS 'Settings', 'Boot', enter (red arrow) UEFI & disable, enter & either leave alone or disable as to preference (blue arrow), USB HardDisk set as desired, etc. Then, in the 'Boot Option Priorities' (white arrow pointing at 1 thru 8 boot list in this example), start at the bottom & disable as you go upward until you have only set for #2 as example, CD/DVD drive, & for #1 boot device, your OS HDD. Hit the 'F10' key & the 'Enter' key & it should be set correctly to what you want.

  • Help with the new IOS screens

    I just upgraded my old Ipad 2 to the new IOS and am totally confused.  Before if I tapped the button on the outside frame then all my open applications would show in the bottom of the screen and I could tap them to close them.  How do I get applications such as Yahoo Mail to close now when I am finished reading?
    Sorry if this is not clear but I am totally lost.
    Thank you,

    To dismiss now ou still double tap the home button, but swipe the material just above the icon up and away and it will close the app.

  • Help with icon on taskbar

    Hello
    I was at the US Post Office site and I guess that's where I got a notice to upgrade Java (?)
    My point is...please help me to remove the icon that just popped up near my clock...I don't see an option to remove. I don't know what this is, don't want to learn, just want it out of there. Please help!
    Thanks,
    Kali

    kali,
    that will come up to show you when you have something Java running. To close out of that once it is open, is to close out of all of your browser (IE for example) windows to reset the Java runtime environment.
    MT

  • Help with icon for external hard drive

    I am in need of the AUTORUN.inf File for the toshiba 593400-E 320 Gb external hard drive.  I am missing the icon that shows up with the drive.

    Just to clarify - when you run Disk Utility (in your Utilities folder) the drive you bought doesn't show up in the window under your boot drive?
    If it appears on your desktop, you should see it in the Disk Utility window as this displays all mounted drives.
    You then click on the drive (Mybook3.0 or whatever it appears as), and choose Erase from the options on the right.
    Best Wishes.

  • Help with adjusting Objects on screen

    I am making a Flash website and I need to know how to make my Menu on left and Logo on right stay on left and right
    as the screen size is changed. A similar example I am trying to accomplish is this well know site.
    http://cornerstonesimi.com/
    Notice how the menu and logo stay on the right and left...I have been searching for days on how to do this.
    I have everything built on my stage but cannot achieve this and thought someone may be familiar with this technique.
    Thanks!

    adjust your publish settings to 100% x 100% (file/publish settings/html).

  • I need some help with my ipod-the screen is frozen on do not disconnect

    this morning i went to sync my ipod with itunes to update it but when i plugged it in to my computer it said do not disconnect but the screen froze before it even connected to itunes.... now the screen is frozen on do not disconnect and the ipod won't even turn off. anyone have any suggestions?

    Try Resetting your iPod. Toggle the hold switch off and on a few times then hold down the MENU and SELECT (centre) buttons for five or ten seconds until you see the Apple logo appear then the menu button to go to the normal display: iPod isn't responding it appears to be frozen

  • Need help with adding a login screen

    Hello I have a program with a JFram and tabbedpane.
    The tabbedpane has 2 tabs but I want them to become visible after entering a correct
    username and password.
    So I want to have a login screen in my JFrame and when the username and password are correct the user can see the tabs and there content.
    This is what I have for the tabs What is the best way to add a log in screen?
    I thought about a panel with 2 txtfields and a button and when it is correct than open the tabs.
    public BelTableau() {
        super("Standalone BelTableau & E-Entree Receiver");
        Container c = getContentPane();
        c.setLayout(null);
        JTabbedPane tabbedPane = new JTabbedPane();
        JComponent panel1 = BelTab();
        tabbedPane.addTab("BelTableau",panel1);
        JComponent panel2 = KeyTab();
        tabbedPane.addTab("E-Entree",panel2); 
        tabbedPane.setBounds(10,10,820,550);
        c.add(tabbedPane);
        setBounds(100,100,850,600);
        setVisible(true);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // Close program when exit
    protected JComponent KeyTab()
        JPanel keypanel = new JPanel(false);
        keypanel.setLayout(null);
        return keypanel;
    protected JComponent BelTab()
            JPanel belt = new JPanel(false);
                belt.setLayout(null);
         belt.add(aantalhuizen);

    This is what I have for the tabs What is the best way
    to add a log in screen?
    I thought about a panel with 2 txtfields and a buttonA panel, 1 JTextField, 1 JPasswordField, 2 Buttons (Ok/Cancel).
    and when it is correct than open the tabs.Either that or use a modal JDialog.

Maybe you are looking for