Keyboard not displaying the correct characters on Windows 8.1

Hi All, I have two HP keyboards model 5188-6077 and on Windows 8.1 the upper case 2 which should be the @ key is keying the " symbol and vice versa the " key is giving the @ symbol. I have never used these keyboards on Win 8 before, and they are both doing the same thing so I'm guessing that it is a driver issue. They both type correctly on Windows 7.
I have tried, but can't find the correct driver for 8.1. Has anyone got a solution? Thanks, Jim
This question was solved.
View Solution.

Hi,
It sound like the wrong input region for the keyboard - if the @ is above the 2 it should be set to US ( the " above the 2 is UK ).  See the guide below.
http://www.howtogeek.com/121169/how-to-change-your-keyboard-layout-in-windows-8/
Regards,
DP-K
****Click the White thumb to say thanks****
****Please mark Accept As Solution if it solves your problem****
****I don't work for HP****
Microsoft MVP - Windows Experience

Similar Messages

  • Design Window is not displaying the correct view

    Hi
    For some reason the Design View on my CS3 is not displaying
    the correct view.
    It used to show how the web page would look but it is simply
    showing up the wording and pictures surrounded by dotted black
    lines.
    I am using a template as a bases for all the pages and all
    the pages are showing like this.
    My other sites are showing up OK though.
    When I Preview in Browser, it all shows up OK.
    Can anyone help?
    Bezz

    VIEW | Style Rendering > Display Styles
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Bezz333" <[email protected]> wrote in
    message
    news:fttdsr$394$[email protected]..
    > Hi
    >
    > For some reason the Design View on my CS3 is not
    displaying the correct
    > view.
    >
    > It used to show how the web page would look but it is
    simply showing up
    > the
    > wording and pictures surrounded by dotted black lines.
    >
    > I am using a template as a bases for all the pages and
    all the pages are
    > showing like this.
    >
    > My other sites are showing up OK though.
    >
    > When I Preview in Browser, it all shows up OK.
    >
    > Can anyone help?
    >
    > Bezz
    >

  • Firefox is not displaying the correct font color on my blog, but other browsers are.

    I have a web designer issue. Firefox is not displaying the correct font color on the header in my blog. Explorer, Chrome, and Safari have no problems. The page is in css but this particular section has html code o designate color. The code is as follows:
    <font face="helvetica" color="FF9966" size="1">blog</font>
    Though all other browsers display the light orange color designated, Firefox displays white. Strangely, if if retype the code by spelling out a color, Firefox displays it correctly. i.e.
    <font face="helvetica" color="black" size="1">blog</font>
    ... will give me black. You can see the effect by viewing the link below and looking at the word "blog" in the header, which should be light orange but is not in Firefox.

    Actually it also seems to work in the current Firefox 4 beta as it is.
    The code is not right though - the correct syntax for the color attribute with hex values is with a # at the start, so:
    color="#FF9966"
    It might work in Firefox 3.x if you change that.

  • I have just updated to ISO 8 and my app icons are not displaying the correct icon but just a generic icon. Anyone had a similar problem?

    I have just updated to ISO 8 and my app icons are not displaying the correct icon but just a generic icon. Anyone had a similar problem?

    That happened to me for a short period of time after I updated. It didn't do it with all apps, but it did it with a few here and there. Try a few basic standard troubleshooting steps. Close all apps and reset the iPad.
    In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    You can also try resetting all settings. You will not lose any data, but most of the device settings will have to be entered in the settings app again. Settings>General>Reset>Reset all Settings.
    Hopefully it will be something simple, but don't rule out restoring the iOS software, if nothing else works, but start with this easy stuff first.

  • ReadUTFBytes() not returning the correct characters

    I am reading in a text file using FileReference() in a small AIR app i'm buliding.  This text file contains translations for the site I'm working on, in a bunch of different languages.  I correctly receive the byteArray in the data parameter of the FileReference object I created.  I am using readUTFBytes() to convert the entire data block to a String so I can parse through it and create an XML for all the different phrases and such.  I am finding that most characters are read correctly into the String except for example Ž (utf-8 code 142).  I trace the index value in the byteArray and correctly get the binary value 10001110 (142).  If I try and readUTFBytes() on this byte individually I get nothing in the character result.
    var ba:ByteArray = new ByteArray();
    ba.writeBytes( _loadFile.data, 126, 1 );  //where 126 is the index of the character...yes I quintuple checked it's the correct index
    ba.position = 0;  //not necessary but for safe measure
    var char:String = ba.readUTFBytes(ba.bytesAvailable);
    trace( char );
    char traces blank.  And the local variable value in Flashdevelop and Flash Builder is "".
    I've tried readMultiByte() with a bunch of different charSet types as well, but nothing has yielded the correct character for this value (and many others).
    Has anybody ever worked with loaded text files with odd characters and run into (and hopefully solved) this issue?
    Thanks

    Hey sinious,
    No I am not using URLLoader().  I am using FileReference().
    public function startLoadingFile( mEvt:MouseEvent ):void
                _loadFile = new FileReference();
                _loadFile.addEventListener(Event.SELECT, onFileSelected);
                var fileFilter:FileFilter = new FileFilter("Plain Text (*.txt)", ";*.txt");
                _loadFile.browse([fileFilter]);
    private function onFileSelected( evt:Event ):void
                _loadFile.removeEventListener(Event.SELECT, onFileSelected);
                _loadFile.addEventListener(Event.COMPLETE, onFileLoaded );
                _loadFile.load();
    private function onFileLoaded( evt:Event ):void
                _loadFile.removeEventListener(Event.COMPLETE, onFileLoaded );       
                var langText:String = _loadFile.data.readUTFBytes( _loadFile.data.bytesAvailable );   
    I'm doing this so the desktop application I'm making (using AIR) can be used to load any local translation text file and parse it's contents.
    The readMultiByte functionality in FileStream is no different than the multibyte support for a standard byteArray.  You choose your length and then declare your character set.
    I've tried the majority of relevant characrter sets as outlined on the Adobe page http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/charset-codes.html including "Windows-1252".  Th eother "Windowa-xxxx" are for Turkish and Thai and such.  These characters are all visible in the text file I'm reading from. 

  • ITunes will not display the correct name of my iPod

    Whenever I connect my iPod to iTunes, iTunes displays the name of the iPod as HP_Pavillion, which is not the correct name for my iPod, and if I open it, no songs or videos are displayed but iTunes says that 15.13 gb are used (also incorrect).
    If I eject the iPod, all of my songs are there and the correct name is displayed under settings.
    What do I do????
    John

    okay, with that set of symptoms we had better check on this possibility:
    Windows confuses iPod with network drive and may keep iPod from mounting or songs may seem to disappear

  • IxDimGet("per", "name") is not displaying the correct period

    Hi
    In XLReporter we have a YTD report were per = value selected at time of generating the report. The column is set as YTD(@per) and is retreiving the YTD data upto the correct period. However the column heading ixDimGet("per", "name") is displaying the 1st period of the YTD not the last period as selected in the parameters.
    eg. report is run to Oct 2007
          data is total to Oct 2007
          reporting heading displays Jul 2007
    Any suggestions?
    Thanks
    Jenny

    Hi Jenny,
    This can be a problem described in note number:876526.
    XLR uses the year number and period sub code of a financial period to generate its code. If certain period is created as a single period, while the rest months are created as a whole period with sub-periods, the sub code of the single periods are both 1, and the rest months start from 1 and end with 10. This is why the period codes in XLR is abnormal.
    Itu2019s a currently defined as a bug and a fix is in the process. Please try to use other data to filter the report result.
    Regards,
    Jacqueline Jiang
    SAP Business One Forums Team

  • Why is BBP_WF_LIST not displaying the correct PO worklist?????????????

    Hi SRM Gurus,
    My requirement is to display only those Purchase Orders to the user that he has created once user clicks on Purchasing Tab->Ordered or Refresh Button .
    In order to achieve this requirement, I implemented the method 'BBP_WF_LIST' of BADI 'BBP_WF_LIST' for filter type = 'BUS2201'and inserted the following code:-
        li_list1[] = e_pdlist[].
      Looping at PO List
        LOOP AT li_list1 INTO lx_pdlist.
        Getting the PO details through function module
          CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
            EXPORTING
              i_guid   = lx_pdlist-guid
            IMPORTING
              e_header = lx_header
            TABLES
              e_item   = li_item.
          IF NOT li_item IS INITIAL.
            SORT li_item BY number_int.
          Read first line item
            READ TABLE li_item INTO lx_po_item
                               WITH KEY number_int = c_num
                               BINARY SEARCH.
            IF sy-subrc = 0.
            Call FM to get details for shopping cart item
              CALL FUNCTION 'BBP_PD_SC_ITEM_GETDETAIL'
                EXPORTING
                  i_guid = lx_po_item-src_guid
                IMPORTING
                  e_item = lx_sc_item.
               IF NOT lx_sc_item IS INITIAL.
                  IF lx_sc_item-created_by = sy-uname.
                    APPEND lx_pdlist TO li_list.
                  ENDIF.
              ENDIF.
            ENDIF.
          ENDIF.
        ENDLOOP.
      ENDIF.
      refresh e_pdlist.
      e_pdlist[] = li_list[].
      SORT e_pdlist BY object_id.
    Now when I debugged this BADI , the logic is working fine and finally E_PDLIST[] holds only the list of Purchase Orders that meet our requirement but thw worklist that is finally displayed shows all the POs that exist in the system.
    Kindly provide me the solution for the same at the earliest.Have to deliver the object by tommorrow.
    Thanks in Advance,
    Swati

    Hi
    <u>Which SRM version are you using ?</u>
    <u><b>Please see the below mentioned SAP OSS Notes, which will help -></b></u>
    <u>Note 1113156 Post processing of BAdI BBP_WF_LIST not correct</u>
    Note 1018095 BBP_WF_LIST: Only documents for employees from one team
    <u>Note 557295 Changes in the interface of BBP_WF_LIST</u>
    Note 386468 Backend POs not taken into account in BADI BBP_WF_LIST
    <u>Note 549846 FAQ: Goods receipt confirmation</u>
    <u>Other related SAP OSS Notes -></u>
    Note 691300 Transfer of BE_ITEM_SRV to BADI BBP_WF_LIST
    Note 972773 No R/3 purchasing org or purchasing group in BBP_WF_LIST
    Note 549383 BBP_WF_LIST: Only documents for employees from one team
    Note 438793 Transfer of BE_ITEM_SRV to BADI BBP_WF_LIST
    Note 508386 Sorting the list during searching
    Note 457357 Worklist: Confirmation and invoice for desktop user
    Note 423518 Number of the purchase orders in list
    Do let me know.
    Regards
    - Atul

  • In Mac OS X Mail some emails are not displaying the correct font size.

    I have set my Mail to display email messages (Inbox) to Courier 13 point (easy to read) and most messages are displayed that way, however I often get emails that are displayed in unreadably small and often colored type. I don't understand why this is ... could someone explain how to fix this? Thanx.

    The email was probably sent from Outlook as RTF or HTML. You can tell Mail to display those as plain text as well by opening Terminal and typing this command (quit Mail first):
    defaults write com.apple.mail PreferPlainText -bool TRUE
    See http://www.hawkwings.net/2005/09/27/viewing-html-messages-in-apple-mail/ for more information.

  • Keys not registering the correct characters

    My Mac Mini all of a sudden is starting to behave really unusually. When I try to type anything certain letters that I hit on the keyboard would produce a three-letter combination. For example when I type the period character on the keyboard, instead of getting (.), I would end up with (.o9) I believe the letter (b) turns into (bt4).
    Does anyone know how I can fix this? I tried restoring the defaults in the system preferences and that didn't seem to work.

    try another keyboard and see what happens.
    if you are using a wireless keyboard check your batteries and your wireless receiver for interference.

  • Why does my iphone 4s not display the correct battery percentage? it can get really annoying if it turns off unexpectedly and after that another problem occurs with the phone turning off and on repeadtly

    My iphone 4s recently started shutting off and on unexpectedly when updating a whole load of snapchat story's on my feed. However i also have a problem with the battery percentage, i've tried everything with it experimenting all most everything. i even changed my battery twice and i still don't know what to do
    someone please help me

    Hi 3Kadzo,
    Welcome to the Apple Support Communities!
    I understand you are having some concerns about the battery usage and percentage displayed on your iPhone 4s. I would suggest the troubleshooting steps in the following article to help isolate and resolve these issues.
    iPhone and iPod touch: Charging the battery
    http://support.apple.com/kb/HT1476
    I hope this helps,   
    -Joe

  • My iPhone is not displaying the correct photo when I receive multiple emails with photos.  What's going on?

    For example, if I receive an email with "photo 1" attached and then a different email with "photo 2" attached, both emails will display whichever photo I view first.  If I reboot and view the other photo, then I can see it properly, but both emails will then show that photo.  This is happening on my iPhone and iPad 2.  I've talked to one other person who has a similar issue on their iPad 2.  Any idea what is happening and how I can fix this?  Thank you.

    Odd.  Have you tried a battery pull yet?
    Please click the Thumbs Up icon if this comment has helped you!
    If your issue is resolved, please click the solution button on the resolution!
    Every BlackBerry should have BlackBerry Protect, get it now! | Follow me on Twitter | Bring Back BBM Music!

  • Why is my Hard drive info not displaying the correct availability

    I can open "About This MAC" and click on more info it lets me check my hard disk usage under storage. It shows I have 81 GB available of 499.76. However it shows 98 GB of Backups, what could that be?
    Now when I actually right click on Macintosh HD it says I have 437.22 GB available of 499.25 GB. I just don't understand, and I don't believe either is right. If I right click my user file in MAcintosh HD it says I have 165 GB on disc. What gives?

    Welcome to the Apple Support Communities
    That's normal. OS X Lion and Mountain Lion, when you have turned on Time Machine, create "local snapshots" on the hard drive of portable Macs. See > http://pondini.org/TM/30.html
    One of the "features" of local snapshots is that Disk Utility detects them as used space and Finder detects them as free space. That's the reason why you are seeing different free spaces depending on the application you use. There's nothing wrong in making local snapshots

  • The world clock on my IPOD touch is not telling the correct time

    My IPOD touch world clock is not displaying the correct time and the edit feature is not working to change the time

    See:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar

  • Print Problem - PDF is OK on Windows 7, but OK on Windows XP with "Acrobat Reader An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem."

    I have received a PDF which prints fine in Windows 7 but with Windows XP I get "Acrobat Reader An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem." and a blank piece of paper passes through the printer. I appreciate that Windows XP is no longer supported but I would like to think that the solution to this problem is not too difficult!
    I have tried Acrobat 9, 10 and 11.
    Any advice (apart from use Windows 7! ) would be most welcome.
    Many thanks.

    If you use the same Adobe Reader versions with the same PDF on Windows 7 and XP, then I would expect the outcome to be the same.
    Is this a local or online PDF?
    If local, is the file really exactly the same?
    If online, in what browser?

Maybe you are looking for