Hp 6500 wireless. all buttons flashing not working

i have a hp 6500 wireless, and it is not working .
all buttons are flashing and the screen reads, "to avoid damage turn off and then turn back on"
i tried that but idid not work

Turn the printer off.  Hold # and 6 keys on the printer while and for a few seconds after turning it back on.
Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
I am employed by HP

Similar Messages

  • Select all button is not working in vl01n

    Dear All,
    We are facing a problem at the time of creating delivery through vl01n. At the time of selecting all line items of delivery on item overview screen, we are unable to select all line items. Due to this we have to delete each line item batches separately & to redetermine the batches or we can say select button is not working on item overview screen of vl01n. Also when we redetermine the batch split & return back to item overview screen, select all button works for line items perfectly.
    thanks & regards
    Deven Sharma

    Hi,
    In the user command write the code as per the sample given below:
    FORM select_all .
      CLEAR v_lisel.
      DO.
        READ LINE sy-index FIELD VALUE v_chk.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        READ LINE sy-index FIELD VALUE sy-lisel INTO v_lisel.
        IF v_lisel+2(1) = ' ' AND sy-index GT 5.
          v_lisel+2(1) = 'X'.
          MODIFY LINE sy-index FIELD VALUE sy-lisel FROM v_lisel.
        ENDIF.
      ENDDO.
    ENDFORM.                    " select_all
    reward if useful
    regards,
    ANJI

  • MY PAGE IS ALL RED , flash not working w/ chrome

    when i go on a page it shows all red, no pictures work, but when i go to the adobe site it says i have the latest version installed... please help m! thanks

    This forum software is very tricky; updates to forum posts sometimes need to be done three or four times until it "takes".  I have been able to update your original post.
    Now that it is actually readable, I will go and have a look at it.

  • All Buttons Function Not Working

    Hi to all.   I have a Torch 9860 that i dropped and cracked the digitizer,   but the thing is while the trackpad works pressing any button doesnt work.  so i have been doing alot of searching and reading but no scenerio matched mine, so in last effort i prayed it was a software problem and downgraded the phone all the way to the original os and behold the buttons started working then i thought maybe i can return to the 7.1 os and when i did that the buttons stopped working again.  anyone out there have any idea how i can get back to 7.1 os with my buttons working?  

    sunshinesunshine wrote:
    So basically if a iphone has a fault after the 1 year warranty period is over, there is nothing the consumer can do but purchase a new phone??
    Pretty much. Except that Apple will replace it for a fixed fee that is far less than the cost of a new phone. In the US the replacement cost for an iPhone 4 is $149. It is comparable in the UK. Unless you can prove that the fault was present at the time of purchase. A switch wearing out would probably be considered normal wear and tear, not a "fault".

  • Select all button is not working in ALV List Display

    Hi All,
    I am displaying output by using lav list display. afer displaying the output iam showing my own pf status here. in my pf status i am havinh one button called 'SELECT ALL' when i click this button it has to select all the checkboxees in my output. but it is not happening like that any body can siggest me what shall i do in this case.
    i am sending my code below.
    type-pools : slis.
    tables : zuser_secobjects.
    data : t_header1 like zuser_secobjects.
    data : begin of it_secobjects occurs 0.
            include structure t_header1.
          end of it_secobjects.
    data : wa_ita like line of it_secobjects.
    *data : it_secobjects like zuser_secobjects occurs 0 with header line.
    data : i_field type slis_t_fieldcat_alv with header line.
    data : w_field like line of i_field.
    data : i_sort type slis_t_sortinfo_alv.
    data : w_sort like line of i_sort.
    data : it_filt1 type slis_t_filter_alv with header line.
    data:
    i_tabname type tabname,
    i_repid like sy-repid,
    is_lout type slis_layout_alv.
    data : chk_box type slis_fieldname.
    selection-screen: begin of block b1 with frame title text-t01.
    parameters : p_appln type zuser_secobjects-appln.
    parameters : p_user type usr02-bname, "zuser_secobjects-appln_user,
    p_partnr type zuser_secobjects-appln_partner,
    p_ptype type zuser_secobjects-partner_type default '02',
    p_upostn type zuser_secobjects-user_position,
    p_sdate like likp-erdat default sy-datum,
    p_edate(10) default '12/31/9999',
    p_revnum type zuser_secobjects-revnum,
    p_cted type zuser_secobjects-created_by,
    p_cdate type zuser_secobjects-creation_date,
    p_ctime type zuser_secobjects-creation_time,
    p_chnby type zuser_secobjects-changed_by,
    p_cdate1 type zuser_secobjects-changed_date,
    p_ctime1 type zuser_secobjects-changed_time.
    selection-screen: end of block b1.
      INCLUDE ZVR_MAHI7_F01                                              *
    form user_command using p_ucomm like sy-ucomm
    rs_selfield type slis_selfield.
    case p_ucomm.
    when 'DELETE_ALL'. " SELALL is the FCODE of ur push button
    loop at it_secobjects into wa_ita.
    wa_ita-checkBOX = 'X'.              "<--  Change this
    modify it_secobjects from wa_ita.
    endloop.
      rs_selfield-refresh = 'X'.   "<-  ADD THIS
    endcase.
    endform.
    *&      Form  delete
    form delete.
    *data: is_secobjects type zuser_secobjects.
      data : begin of is_secobjects occurs 0.
              include structure zuser_secobjects.
      data : checkbox type c.
      data : end of is_secobjects.
    *IF FLAG = 'X'.
      is_secobjects-checkbox = 'X'.
      modify is_secobjects
        from it_secobjects
        transporting checkbox
      where checkbox = 'X'.
    endform.
    *&      Form  get_data
    form get_data.
      select * from zuser_secobjects
      into table it_secobjects.
    endform.                    " get_data
    *&      Form  prepare_fieldcatalog
          text
    -->  p1        text
    <--  p2        text
    form prepare_fieldcatalog.
      clear: w_field,i_field.
      refresh:i_field.
      i_field-key = 'X'.
      i_field-col_pos = 1.
      i_field-ddictxt = 'S'.
      i_field-seltext_s = '@11@'.
      i_field-checkbox = 'X'.
      i_field-input = 'X'.
      i_field-fieldname = 'HEADER'.
      i_field-outputlen = 0.
      append i_field.
      clear i_field.
      w_field-fieldname = 'APPLN'.
      w_field-tabname = 'IT_SECOBJECTS'.
      w_field-seltext_l = text-m01.
      w_field-outputlen = '10'.
      w_field-col_pos = 1.
      append w_field to i_field.
      clear w_field.
      w_field-fieldname = 'APPLN_USER'.
      w_field-tabname = 'IT_SECOBJECTS'.
      w_field-just = 'C'.
      w_field-seltext_l = text-m02.
      w_field-outputlen = '7'.
      w_field-col_pos = 2.
      append w_field to i_field.
      clear w_field.
    endform.                    " prepare_fieldcatalog
    *&      Form  ALV_LIST_DISPLAY
          text
    -->  p1        text
    <--  p2        text
    form alv_list_display.
      i_repid = sy-repid.
      call function 'REUSE_ALV_LIST_DISPLAY'
           exporting
                i_callback_program       = i_repid
                i_callback_pf_status_set = 'PF_STATUS_SET'
                i_callback_user_command  = 'USER_COMMAND'
                is_layout                = is_lout
                it_fieldcat              = i_field[]
           tables
                t_outtab                 = it_secobjects.
    endform.                    " ALV_LIST_DISPLAY
    anybody can modify the code  and resend it to me.
    thanks,
    maheedhar.t

    Hi,
    In the user command write the code as per the sample given below:
    FORM select_all .
      CLEAR v_lisel.
      DO.
        READ LINE sy-index FIELD VALUE v_chk.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        READ LINE sy-index FIELD VALUE sy-lisel INTO v_lisel.
        IF v_lisel+2(1) = ' ' AND sy-index GT 5.
          v_lisel+2(1) = 'X'.
          MODIFY LINE sy-index FIELD VALUE sy-lisel FROM v_lisel.
        ENDIF.
      ENDDO.
    ENDFORM.                    " select_all
    reward if useful
    regards,
    ANJI

  • My "update all" buton will not work in the app store.  It gives me a message saying there is not enough storage to update.. I know i have storage left on the phone.  I even bought more icloud storage.  Any ideas??? Please help??? thanks

    My update all button will not work in the app store.  It keeps giving me a crazy message about not having enough storage to update apps.  Please help? I know i have storgage on icloud and on the phone itself.  Any ideas? Thanks

    Try deleting the old backup.
    Settings>iCloud>Storage & Backup>Manage Storage, tap the device name and on the resulting screen, scroll down and tap on Delete Backup.

  • After trying to install 6500 Wireless all-in-one on my 3rd comp, it ceased to work

    While trying to install my (less than 2 year old) HP6500 Wireless all-in-one software on my 3rd networked computer, the software installation went into a loop and would not complete the installation.  After about an hour or so of waiting, I physically had to unplug the printer & eject the CD. Upon doing so, the printer became next to useless. The printer key pad no longer functions except when I first plug it in, and I can no longer access it from the other 2 original computers, even with USB.  The HP solution center says it’s on line, until I go to print via USB, then it says it’s offline. I can hook the USB up on the Widows 7 unit and force it to print Word Office documents, but when I try to print documents on it from either Internet Explorer or Fire Fox it wants to send a Fax??? I've uninstalled and reinstalled the software 3 times on my Windows 7 unit now to no avail. Is it my printer, the printer Firmware or what?  I have downloaded and run all the HP & Microsoft troubleshooting tools on the Windows 7 unit to no avail.  However; HP downloads will not successfully complete on my XP unit.  What should I do? Should I start over with a new wireless printer?
    Totally Confuzed

    Re: After trying to install 6500 Wireless all-in-one on my 3rd comp, it ceased to work
    Ref: 02-23-2012 08:53 AM
    12:38 AM 2/24/2012 UPDATE ON WHAT I HAVE TRIED AGAIN: 
    1. Power Reset on the Printer: Power off the printer. Unplug the power cable from the back of the unit. Wait 60 seconds. Replug the power cable to the printer and power it on. DONE
     2. Print a test page: Follow this document to print the test page. PRINTER SCREEN SAYS IT'S PRINTING AND THE POWER LIGHT IS FLASHING LIKE IT'S BUSY, BUT NOTHING IS HAPPENING. ONLY WAY TO USE IT NOW IS TO UNPLUG IT AND START OVER. THIS HAPPENS ALL THE TIME NOW. IT WILL NOT PRINT TEST REPORTS.
     3. Create a copy of the printed test page. CANNOT DO NOW - (PRINTER FREEZES UP WITH A BLINKING POWER LIGHT)
     4. Print the Wireless Network Test Report (To check if there are any errors) CANNOT DO
    Press the Setup button ( ). DOESN'T WORK EXCEPT MOMENTARILY...NOT LONG ENOUGH TO MAKE A SELECTION BEFORE IT HANGS AND FREEZES UP...
    Press the Right Arrow button ( ) to select Network Setup, and then press the OK button. CAN'T GET IT TO DO ANYTHING PRESSING THE OK BUTTON.
    Press the Right Arrow button ( ) to select Wireless Network Test , and then press the OK button. The Wireless Network Test Report prints. CAN'T GET IT TO DO ANYTHING PRESSING THE OK BUTTON.
    If you did not encounter any errors while performing the steps above then I think the hardware is OK. Test the software next. Let's use Windows 7 as the test platform. I DON'T THINK THE HARDWARE IS OK.
    1. Download the driver from HP.com. Once it gives you the option to either Run or Save make sure to select Save and then select Desktop as the target location where it will save the file. This is just to make it easier to find it. Once it finishes downloading the file, double click it to initiate the installation process. Follow the on screen instructions until you reach the "select how you want to connect the printer" window comes up. I ALREADY HAVE 3 COPIES ON MY DESKTOP & NONE OF THEM REACT ANY DIFFERENTLY.
     2. At the "select how you want to connect the printer" window select USB and then click Next (I think there is a next button). It should asks you to connect your printer but we are NOT going to do that. Place a checkmark on the option on the bottom of the window that gives you the option to bypass the connection phase of the installation. Click Next to proceed. Once the the installation process completes, restart your computer. I HAVE DONE IT BOTH WAYS BEFORE AND CANNOT GET THE INSTALLATION TO COMPLETE ON ANY OF THE 3 COMPUTERS NOW.
     If you did not encounter any errors at this point then it looks like the software installation process is good. Proceed to the next test. END OF TEST FOR TONIGHT. THANKS
    1. After the computer completely boots up, connect the USB cable to the printer and to the computer. The computer should detect the printer and initiate the HP installation process for it. Follow the onscreen instructions to complete the install.
    2. Try printing to test functionality.

  • HP 6500 wireless ALL-in-one e709n Printer front panel not responding at all

    Hi there,
    I have got a HP 6500 wireless ALL-in-one e709n printer.
    I have been using it with my pc with windows vista on it for nearly 2 years and it has been great.
    1 month ago, the front panel of the printer stopped responding, ie, when i press any buttons, the lcd screen on the printer does not change, it always show the ink level.
    The printer turns on, shows that its preparing, then goes to idle state with ink level icons on the screen.
    If i try to print any documents, it works with ethernet cable connected to my pc (which i used to do it wirelessly) , the cable-connected printing function still works, but wireless printing does not work anymore. 
    However if i try to scan something, on the pc when i open the hp scan app, it shows that 'scanner is not available'.
    Also because the front panel doesnt work, no buttons respond, i cannot scan or copy.
    I have tried unplug everything and reinstall all drivers and programs.
    No damage to printer or my pc, it just stopped working all the sudden.
    Can any one help me out please?
    cheers,
    Charlie

    Hi Charlie,
    Try going throgh the steps listed below and check if that may help:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02716803&cc=us&dlc=en&lc=en&product=3795406&tmp...
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Have a HP OJ 6500 Wireless all-in-one, using a Windows 7 64-bit OS. Wireless stopped working.

    HP OJ 6500 Wireless all-in-one, using Win 7 64-bit OS.  Initially configured for both USB cable and wireless when purchased.  Wireless drivers updated per setup instructions.  A year later, the wireless has gone on sabbatical.  I've re-installed the SW, downloaded the Win 7 OS drivers.  Can only print through USB cable.  Wireless still not functional.  Frustrating! 

    Hi, I assume that you have lost your wireless print functionality? You can refer to the following link to see if it can resolve your issue: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02253256&tmp_task=solveCategory&lc=en&dlc=en&cc...
    Although I am an HP employee, I am speaking for myself and not for HP.
    ***Say thanks by clicking the "Kudos! Star" which is on the left***
    **Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue.**

  • I am a windows user that has converted to Mac and loving it but when I updated to Lion my wireless internet dongle would not work anymore and the Macbook Pro does not recognise the device at all so I am unable to reinstall it again. Any ideas

    I am a windows user that has converted to Mac and loving it but when I updated to Lion my wireless internet dongle would not work anymore and the Macbook Pro does not recognise the device at all so I am unable to reinstall it again. Any ideas would be greatly appreciated.

    Go to Finder > Preferences then select the General tab
    Make sure External disks is selected.

  • I have bought a IPhone 4 from Malaysia, my home button is not working. I want to replace the phone under warranty but all service centres mention that its country specific and I need to get it replaced only at malaysia. Can anyone guide me what to do????

    I have bought a IPhone 4 from Malaysia, my home button is not working. I want to replace the phone under warranty but all service centres mention that its country specific and I need to get it replaced only at malaysia. Can anyone guide me what to do????

    The iPhone warranty is not international and as you purchased in
    Malaysia the warranty is only valid in Malaysia
    You could try taking to an iPhone Authorised service provider
    in India but there have been many similar posts to yours
    and I am not aware  of them assisting  with an iPhone from
    outside India

  • X230 Trackpoint buttons do not work at all

    Hi,
    i am running Debian Wheezy. The trackpoint buttons of my x230 do not work at all.
    I also tried an actuall Kanotix live distribution. The buttons do not work with Kanotix also.
    Has anybody experienced similar issues, or have an idea, whats wrong?
    The trackpoint itself works fine. Unfortunately i have no windows available to test it with that OS.
    Is it likely a hardware issue? Would it make sense to remove the keyboard to have a closer look at the buttons?
    Thank you very much.

    Hi, Funkwecker
    Hope you are doing well I was wondering if you could give me more information about what you have tried and what version of Debian Wheezy and Kanotix you tried using. Also some general info. about the specs on your computer too would be great! Thanks!
    Did you find a post Awesome? A response just Outstanding? Kudo them!
    Did the post you read answer your question? Did someone help you figure out your problem? Hit Solution Provided and give that person a pat on the back for helping you out!

  • All iPad buttons are not working even after resetting it (hard, soft and via iTunes).

    All iPad 2 buttons are not working even after I resetting it. I tried both of the hard and soft reset, and even resetting my iPad via iTunes. 
    The volume buttons work after I tried this method : "hold iPad in landscape mode. Push the home button while rotating it to Portrait mode, release it."

    I have the same issue, nothing I did fixed the problem, I would suggest if you can visit apple store and give us your feedback with them.
    for me I can't go to apple store because I don't have any store near me, I will have to wait for 2 months to travel!

  • My i4s wifi button is not working. when i opened the setting and then wifi the button is greyed out. then i opened general and then about. in the bar of wifi address it is written N/A. what does its mean. i have done all other things like setting general

    my i4s wifi button is not working. when i opened the setting and then wifi the button is greyed out. then i opened general and then about. in the bar of wifi address it is written N/A. what does its mean. i have done all other things like setting >general<reset<reset network setting. but all in vain. tell me the solution

    restore your phone as new through itunes. if the issue persists after a factory restore via itunes, it means you've got a hardware issue and the phone needs to be repaired

  • I have just updated my iPhone to version 5.1, and the camera button next to the "slide to unlock" button does not work at all. It used to function well before the update. Can someone help??

    I have just updated my iPhone to version 5.1. After the update, the camera button next to the "slide to unlock" button does not work at all. It used to function well before the update. It happens to my friends as well. What should I do? Can someone help?? Thanks!!!!

    Slide the camera button up

Maybe you are looking for