Can I Replace My Keyboard With Back Ligh Keyboard?

I tried to remove the keyboard !
but i failed how to replace the keyboard for my laptop
can i repalce with a backlight keyboard for my  laptop?
please help me
This question was solved.
View Solution.

Hi there @vishnupraneethr 
Welcome to the HP Support Forums!
In answer to your request, I am attaching the HP Pavilion dv7 Notebook PC Maintenance and Service Guide. Within you can find the procedure for replacing the keyboard correctly, as well as as the part numbers for the supported, compatible keyboards. Check on page 59 of the manual for the list of replacement keyboards, and the replacement procedure.
Unfortunately, from the list, it does not appear that any of the options are backlit.
I hope this helps.
Malygris1
I work on behalf of HP
Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
Click Kudos Thumbs Up on the right to say “Thanks” for helping!

Similar Messages

  • I want to replace my dv7-6199us standard keyboard with a backlit keyboard?

    I need a backlit keyboard part number.
    Can I replace my dv7-6199us  standard keyboard with a backlit keyboard? I have looked in the dv7 "Maintenance and Service Guide" for the dv7 with no success. I found the same keyboard without backlight. I have noticed the backlit keyboards in dv7s made after mine but I don't know how to find the part number for that keyboard.
    Thanks for your help.
    This question was solved.
    View Solution.

    Hi,
    The keyboard alone won't do the job. You need the motherboard on your machine has light CONNECTORS for the keyboard. I don't think your machine has this type of motherboard therefore you have to looking for a right montherboard first.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Can I replace InDesign CS6 with InDesign CS6 ME version?

    Can I replace InDesign CS6 with InDesign CS6 ME version? And does the ME version interface in English or Arabic?
    I have a translator who sends me InDesign files using the Sultan font, but when I open it, a lot of the font shows up as math symbols. I have the correct font installed, but I'm wondering if I need the additional features of the ME version of InDesign to make the type correct on my end.

    I don't believe my CS6 is from a Creative Cloud subscription. It was installed by my IT department, so I will ask them.
    When I receive the files from the translator, they send both an InDesign file and a PDF, so I can see it as they see it. However, the InDesign file looks like this:
    But the PDF file looks like this:
    They sent me the font file, so I'm assuming I have the right font and the issue is on my end. Or perhaps not?

  • HT3486 can I use my ipad with back to my mac?

    can I use my ipad with back to my mac?

    No, because you have to use AFP file protocol and it is difficult to get going, although one file app does offer it, I have not seen or heard anyone that managed it. You should look in the ipad area.. as this really has little to do with Time Capsule.

  • Can we replace OTR text with Images?

    Hi All,
    I just wanted to know can we replace OTR text with Images?
    or
    Can we define an image as an OTR text? so that it can be placed in the page where OTR text is used.
    regards...
    Ravi

    Hi Ravi,
    it is possible to replace an OTR Text with an image.
    You first have to define the Link in the OTR Text where your image is located. This can be everywhere in the Internet or better on a secured intranet server which everyone can reach easily without permission problems. Maybe in the DMZ.
    You can even link it into the MIME Repository of your SAP System as well.
    Then you have to put that OTR Text into a
    <htmlb:textview> Tag and ensure that the switch
    " encode = "TRUE" is enabled.
    Well thats all.
    Keep in mind that the a different language, set in the Internet Explorer or other viewing instances, disables the link if it not "translated" into that language.
    This can also be an advantage if you got multilingual fixed pictures with drawn text in it.
    I suggest you put all your links ( with a Value Field and at least a name field) into a seperate table into the repository for easy maintaining.
    Greetings,
    Dominik
    Edited by: Dominik Lemke on Dec 19, 2007 12:02 PM

  • Can I replace a DOMParser with a SAX parser?

    hi, can I replace a DOMParser with a SAX parser? In the class "org.apache.xerces.parsers.DOMParser", there is a method called "getDocument()", it returns the document as a DOM object, but I don't see any equivalent methods in the SAX parser.

    I would avoid using SAXParser. It has been superceded by the org.xml.sax.XMLReader class.
    the XMLReader class has a method called parse() that accepts an InputSource.
    Look at the org.w3c.transform (I think that's it) package and it gives you the ability to create a stream from a DOM Document.
    Also avoid using classes that are specific to an implementation of an XML parser. I know from experience that this can really jam things up in the long run.

  • How can I replace the Portal with completely new Flash website?

    Can I replace the Portal with completely new Flash website? My customer do not want the JSP UI. Instead, he wants a completely new designed Flash site. Is it possible to do it? How can I deploy a new portal to cover the current one?

    If you have a look at some of the code examples which do the equivalent of site maps, you could in theory replace the whole portal desktop with some sort of Flash framework which reads the user's role structure at run time.
    I think it is useful to remember that the SAP portal is primarily a business application launchpad. It does that very well. Trying to make it into a Flash launchpad will be challenging.

  • My iphone has fallen into the water 6months ago and there is no apple store in my country so i gave the phone s technical service.but they couldnt repair the phone.and now the battery is swollen.can i replace the phone with the new one in spain?

    My iphone has fallen into the water 6months ago and there is no apple store in my country so i gave the phone s technical service.but they couldnt repair the phone.and now the battery is swollen.can i replace the phone with the new one in spain?

    You can only obtain warranty OR post warranty service in the country of original purchase
    As your iPhone has user damage it has no warranty
    IF the iPhone originated from Spain or another EU country you can get out of warranty service in any EU country

  • HT1338 can i replace my mac with a newest model and pay a difference

    can i replace my mac with the newest model and pay a difference>>>

    Sorry. No.
    Apple does not have a trade-in policy.
    Best.

  • The demand of my application is that i can not replace for loop with a while loop.because i need fixed number of iterations and as far as i know fixed iterations could be only with possible with the for loop.

    the demand of my application is that i can not replace for loop with a while loop.because i need fixed number of iterations and as far as i know fixed iterations could be only with possible with the for loop.
    your recommended second option that i could add true/false case.
    this true/false case must be inside the for loop or outside the for loop?if this case is inside the for
    loop, how can i send stop command from outer while
    loop?
    more over do you have any example for this please?
    thanks"

    You can execute a fixed number of iterations using a while loop by comparing the iteration count to the number of iterations you want and wiring the output of that comparison (e.g. Less Than or Equal To) to the continue (or stop) terminal of your while loop. Which comparison you use depends on personal preference, where you wire the desired count and the interation count, and whether you're using the while loop as Continue if True or Stop if True.
    Ben gave you step-by-step instructions in response to your previous question. Look here for Ben's response.
    Ben's response looks pretty good and detailed to me. It certa
    inly deserved better than a 1-star rating.

  • Hi, do you know if I can get a Macbook Pro with a numeric keyboard ?

    Hi, do you know if I can get a Macbook Pro with a numeric keyboard ?

    Use this to remap:
    http://pqrs.org/macosx/keyremap4macbook/index.html
    Or get something like this:
    http://www.powermax.com/parts/show/cro-43039?utm_source=Google%2BProduct%2BSearc h&utm_medium=Referral&utm_campaign=Google%2BProduct%2BSearch&src=g&gclid=CN3oouz x6bMCFRQcnAodYhwAyg

  • G50-45 Keyboard replacement with back-lit keyboard???

    Hello,
    I have a wonderfull G50-45 laptop with very good LCD display (worst decision I have ever made as from another discussion I relaised its the **bleep**test possible display due to make more profit by Leovo). I found some keyboards around in different sites, I need one as mine is german by default. Can I replace the existing keyboard with backlit one. Does this laptop motherboard support backlit feature? 

    hi rockstardmtb,
    For a backlit keyboard to work, the following must be met:
    1. A compatible backlit-type keyboard (must be listed in the maintenance manual).
    2. The motherboard must have a keyboard power connector (to enable the backlight).
        - Link to picture
        - Link to picture
    Looking at the keyboard spare parts for the G50-45 (see page 84-85 of the HMM), this unit uses a non-backlit type keyboard (it also doesn't have any spare parts for backlit keyboards).
    In addition, there's also no keyboard power connector on the motherboard to power up a backlit keyboard so this means the unit isn't capable of using a backlit keyboard.
       - Link to picture
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Can't replace old text with new text in a text box

    Hello everyone. This is my first time posting in the forum, so I'm hoping this works out well. We recently purchased a few copies of Adobe Acrobt X for the office, and one of the users is having an issue with editing text in a field. She can type new text into a box, but when she goes back to replace that text with something else, the old text stays. New text appears on top of the old text, and you can see both. Is there a way to simply highlight the old text, delete it, and then replace it with new text? Thanks in advanace for your assistance. I understand this might be confusing, so let me know if you have questions.
    Thanks,
    Dan

    You have to use the text touchup tool (there is a new name like text edit tool in AA X) to edit such text. It sounds like you are using the typewriter tool or something like it. Text editing in Acrobat is not for the weak at heart. It can be very frustrating and is not recommended except for very minor changes. If at all possible, you should edit the original and just recreate the PDF.

  • How can I replace iCloud contacts with up-to-date contacts on my Macmini?

    Originally I used iCloud when it first was released. My contacts went into the cloud.  I stopped using iCloud and maintained my Contacts on my Macmini. All of my up-to-date information which includes additional contacts and revisions are on the Mac mini.  iCloud wants to work with my old information but I'd rather replace the information on iCloud with the information on my computer.  How can I replace what's in iCloud with my edited and updated information?

    Open Address Book on your Mac, click All Contacts, select a single contact, press Command-A to select them all (they should all be highlightes), then go to File>Export>Export vCard and save this on your desktop.  Then delete all your iCloud contacts by going to icloud.com on your computer, log into your iCloud account and open Contacts, click on All Contacts, to the right click on any single contact to select it, click on the gear-shaped icon at the bottom left and choose Select All, then press the Delete key on your keyboard to delete them all.  Then click on the gear-shaped icon again, choose Import vCard and navigate to the vCard you saved earlier to import your contacts to iCloud.

  • I have a Macbook Pro 15 Late 2011, can i replace the superdrive with an data 3 hdd or does it only work with sata2?

    I was wondering if the superdrive can be replace with an sata 3 hdd or whether it should be a sata2 hdd.
    I´ve heard of problems with sata 3 ssd´s as superdrive replacement.
    thx

    thank you, but the hdd that i was thinking about comes with an 6Gb/s interface...
    http://www.hgst.com/tech/techlib.nsf/techdocs/79BA810F702AD64E88257977006375D8/$ file/TS5K1000_ds.pdf
    do you think i could use this model in the optibay ?

Maybe you are looking for