Keyboard issue still not fixed with Bootcamp 3.1

It appears that bootcamp 3.1 did nothing to solve the most annoying issue I face. Everytime I unplug my Mac keyboard from my MacBook Pro, and then plug it back in, bootcamp reverts the keyboard back to mapping the function keys using the apple standard regardless of the setting in the bootcamp control panel.
So everytime I unplug/plug-in the keyboard (which is a lot during the day given my job) I have to open the control panel, uncheck the "Use function keys as standard function keys" checkbox, click apply, then check the same checkbox again to re-enable it and click OK.
I've actually become quite used to doing this, but it's still annoying nonetheless.
I'm wondering if there is no way to fix this. Maybe it's a USB thing. Maybe it's a firmware thing in the apple keyboard. Who knows.
Apple, I have posted several times and have never had a response. It would be nice to hear something from someone on the issue.
Thanks.

Dear Deputy Dwane T.,
Hopefully this will help solve the constant setup problem. I found a solution for what may be a similar problem, but it was with the keyboard in OS X rather than in Windows. The problem I had was that I would start up in OS X and then connect the keyboard. I then would get a keyboard setup "wizard", and this problem would happen each time I connected the keyboard. I found that if I would start the computer up with the keyboard first connected before startup, then go through the keyboard setup, and then restart with the keyboard still connected, after that I never would get the setup stuff again. Now I could connect the keyboard at any time before or after startup, and the keyboard would be recognized properly. As for the mis-assignment of the key positions, is there no way to reassign these in the keyboard control panel item in Windows? I see that under the Control Panel "Region and Language" item, if one chooses the tab entitled "Keyboards and Languages" and then the "Change Keyboards" button, followed by the "Add" button, there is an option for "United States-International (Apple)". Does that keyboard layout solve the problem?
Sincerely,
Wilson

Similar Messages

  • X-Fi Titanium PCI-E x1 and known UT3 OpenAL issue still not fixed!!!!!!!

    Dear creative support... wtf is this?! This issue is known since so looooooong time, as i've read at other forums fixed with all other x-fi sound cards but with not my one. Installed yesterday latest beta driver, day before yesterday i've been using stable 2.7.0008 driver and with both versions i got this **bleep** annoying crash.
    I want to remember to you issue details: random crashes of game during play it with ingame OpenAL enabled.
    I have 5. speakers set and i want to play the game with surround audio, i can get it only by enable OpenAL in game menu so do not even try to suggest to me to disable OpenAL!!! I tried many known "fixes" and workarounds, using latest versions of driver but issue still happens to me.
    IF this issue will not be fixed i will buy asus xonar asap, temporary i just have no money to buy new sound card. Gi've me driver fixing this issue, ffs!!!!!!!!!!!!
    Here is full PC configuration:
    AMD Phenom II x4 B35 2,9GHz
    Palit Radeon HD3850 52MB GDDR3 PCI-Ex
    Creative X-Fi Titanium pci-e x
    3xGB Kingmax DDR2 066MHz
    Gigabyte GA-MA785GM-US2H

    This is the only game with which i have a problem.
    I contacted with support via email form, they suggested to me to contact with game's customer support i did so and waiting for answer from them.
    Creative support in answer said that this issue happens not only with creative x-fi products but unfortunately it's not true. In many forums problem were analysed by users and result is one: x-fi users only are facing this issue. Also before i bought card i've been playing long time ut3 with integrated realtek sound card and there was no problem with enabled openal, it shown up when i bought and installed x-fi titanium sound card.

  • Battery Issue still not fixed

    This is my first iPhone.  I like the phone but the battery issue is not resolved.  I downloaded the software fix and it did not fix it.  In fact it might have made it worse!  I have to keep everything turned off all the time or the battery is used up in a few hours.  What good is having the phone if you can't have anything turned on.  I see no difference in the battery life even with the software update.  I don't mind charging it each night, had to do that with the Blackberry too but I don't want it going dead mid day when I have barely used it.  Has anyone found a way to keep the battery at a decent level all day?

    why don't you search the forum before asking a question that's been asked and answered over and over and over and over again?
    There are a multitude of postings with excellent suggestions on how to maximize your battery life.

  • RGB printing bug still not fixed with 6.0.4

    I guess I should not be surprised.
    After three major releases of OSX and 20 updates and two major version and 8 updates of Indesign the monitor profile is still being introduced into the RGB printflow.
    What the HELL does it take to get this bug fixed?
    And, yes I know you can use "Print as Bitmap" or "Fast Graphic Process" in the Canon drivers to work around this problem.
    Just maybe if IDCS5 uses the Cocoa print path that PS and LR now use it will be fixed then.

    Anyone know if CS5 has fixed/addressed this problem?

  • Why iCal cancel of event edits issue is still not fixed after over 2 years?

    Why iCal "cancel of event edits" issue is still not fixed after over 2 years?
    I have been in the software engineering industry for over 14 years, but I have never seen a large corporation being so slow at addressing major issues like these.
    What would it take for Apple to start working on this issue?

    Yup. This is fully ridiculous that you can't cancel your updates once you start. I love the tool but this is on pretty significant issue.
    Sometimes I accidentally move a mtg or make some edit while viewing and you can't back you!!
    If you feel the same way, you should post a note here:
    http://www.apple.com/feedback/ical.html
    Message was edited by: SteveMc10123

  • 3.1EA2 bug still not fixed - Members of package body not listed in the tree

    Hi, I was working today with SQL Developer again and found that this bug is still not fixed even when it was reported more than 1 year ago!!!
    I did a quick search and found it here
    Package Body Tree not always showing
    The problem is when you expand the package specification or package body tree, not all members of the specification/body are listed. This is mostly observable in the package body, but it regards to the specification as well.
    Consider this case:
    CREATE TABLE EMP (
        ID               NUMBER(6,0) DEFAULT 0,
        NAME             VARCHAR2(20 BYTE) DEFAULT NULL,
        DEPT             VARCHAR2(20 BYTE) DEFAULT NULL,
        FUNCTION         VARCHAR2(20 BYTE),
        PROCEDURE        VARCHAR2(20 BYTE));
    CREATE TABLE LOOP (
      AREA    VARCHAR2(5),
      VALUE   VARCHAR2(2));
    CREATE OR REPLACE PACKAGE Test_Package1 AS
    gvc_const CONSTANT VARCHAR2(10) := 'xxx';
    PROCEDURE Test(p_RC OUT NUMBER,
                   p_ID IN NUMBER);
    END Test_Package1;
    CREATE OR REPLACE PACKAGE BODY Test_Package1 AS
    PROCEDURE Test(p_RC OUT NUMBER,
                   p_ID IN NUMBER)
    IS
    BEGIN
      --INSERT INTO EMP (ID, NAME, DEPT, PROCEDURE) VALUES (1, 'Tina', 'xxx', 'xxx');
      --INSERT INTO EMP (ID, NAME, DEPT, FUNCTION) VALUES (2, 'Jeff', 'xxx', 'xxx');
      --INSERT INTO LOOP(AREA, VALUE) VALUES('a','b');
      NULL;
    END;
    END Test_Package1;Compile the package specification and the body. Expand the spec + body in the tree. Uncomment any of the commented lines in the package body and compile the body again. Now expand the package body again and look what is displayed.
    Why? It is because SQL Developer handles words "Function", "Procedure" and "Loop" as keywords and according to them does the parsing.
    Another case
    CREATE OR REPLACE PACKAGE Test_Package1 AS
    gvc_const CONSTANT VARCHAR2(10) := 'xxx';
    TYPE Loop_rec IS RECORD(
      item1   LOOP.AREA%TYPE);
    PROCEDURE Test(p_RC OUT NUMBER,
                   p_ID IN NUMBER);
    END Test_Package1;Compile just this specification and try to expand it in the tree. Again, during parsing the package, SQL Developer takes the word "LOOP" into consideration and fails to parse the specification.
    There is exactly the same problem when you declare functions from external dll libraries in package body. Since there is no "END;" in this case, SQL Developer's parser fails...
    To me it seems you simply blindly took some keywords like "FUNCTION" and expect there will be some "END;" keyword corresponding with it.
    Can anyone have a look at this and finally fix it?

    Hi,
    Thanks for trying out SQL Developer 3.1 EA2 and providing a clear, reproducible test case for this issue. I logged an internal bug for it:
    Bug 13438696 - 3.1EA2: FORUM: CERTAIN KEYWORDS IN PKG BODY BLOCK MEMBERS FROM CONN VIEW TREE
    It seems the bug noted in the other forum thread you reference has been fixed, but really had nothing to do with problems discussed either here or there. That fix involved adding an Edit Body... item to the Package context menu in the Schema Browser, not displaying Package members correctly in the Connection view tree.
    Regards,
    Gary
    SQL Developer Team

  • HP photosmart c309g still not working with os maverick??​?

    i dont understand why this is still not fixed - over a year later!!
    I'm not sure wether to get rid of my HP pinter scanner or my mac!!
    Everytime i scan i get a black page- using apple preview is a joke.
    According to the threads people were complaining about this in 2013.
    Please if there is a real solution to this problem let me know!

    Hello @mpaige , and Welcome to the HP Community!
    I read your post about how when you scan with Apple Preview, the scan turns up all black.
    Although there is no driver or software available for the Photosmart C309g model on Mavericks, meaning you do not have the option to scan using HP software, you do have two other method options to try and scan.
    Click this link and see under "How do I scan with the built-in driver":
    Installing Your HP Printer Driver and Software for Mac OS X
    Also, you can try downloading this driver from Apple, that might help too:
    HP Printer Drivers v3.0 for OS X  
    Just a tip: Ensure the printer is plugged in directly to the wall outlet, avoiding power bars and surge protectors. This ensures the printer is receiving full power and may help greatly.
    Also a basic reset might help as well:
    Press the Power button to turn on the product.
    With the product turned on, disconnect the power cord from the rear of the product.
    Unplug the power cord from the wall outlet.
    Wait at least 15 seconds.
    Plug the power cord back into the wall outlet.
    Reconnect the power cord to the rear of the product.
    If the product does not turn on by itself, press the Power button to turn it on.
    If you find that when you make standard copies from the front panel of printer, that they also turn out black, the printer itself may have a hardware problem. If this is the case, I'd suggest calling HP directly.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assis​t.html
    I hope my post was informative, have a wonderful Tuesday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Gmail archived/labeled Emails not showing problem FIX SOLUTION FOUND - BUT STILL NOT FIXED!

    Newest edits in here:
    http://forums.crackberry.com/general-blackberry-discussion-f2/please-send-very-important-10os-device...
    100% FIX SOLUTION GUARANTEE for Gmail archived/labeled Emails not showing problem!
    How to fix it? FIX "Show Read Filed Emails" button to respond to ON and OFF devices Blackberry HUB for Gmail accounts - NOW IT IS ALWAYS OFF if you press ON or OFF!
     "Show Read Filed Emails" button ON and OFF for Gmail account works on Blackberry Blend desktop version!
    Works with: Blackberry Blend desktop version responds to "Show Read Filed Emails" button ON AND OFF with Gmail accounts! (pressing "Show Read Filed Emails" button ON and OFF again and again, view in Blackberry Blend immediately changes in order you press ON or OFF, but Blackberry HUB is always on OFF)
    Error/Bug: Blackberry HUB do not show Gmail labeled emails
    Main problem: Blackberry HUB "Show Read Filed Emails" button doesn't respond to ON AND OFF and is always OFF fo Gmail account.
    Main problem: ALL Blackberry 10OS devices Blackberry HUB"Show Read Filed Emails" button ON AND OFF doesnt respond with Gmail accounts!
    "Show Read Filed Emails" button doesn't work with: Gmail accounts
    Status: NOT FIXED!
    OS version: Blackberry 10 OS version OFFICIAL 10.3.1.1565
    PROBLEM FOUND!
    I created new Gmail account send 5 test emails and made first 2 test emails labeled and made step by step set up on my Blackberry 10OS device to confirm this ''Show Read Filed Emails'' button BUG/PROBLEM/ERROR:
    1. I signed in with my Blackberry 10OS device like this:
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338846d1425503380t-gmail-archived-lab...
    2. When I set on Gmail account settings "Sync Timeframe" is set to FOREVER and "Sync All Emails Folders" is set to ON
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338847d1425503392t-gmail-archived-lab...
    3. And at last I go to devices Blackberry HUB and see this:
    http://forums.crackberry.com/attachments/blackberry-10-os-f269/338856d1425505143t-gmail-archived-lab...
    As you can see it doesn't matter if "Show Read Filed Emails" button is set to ON or OFF, Blackberry HUB doesnt respond at all, but Blackberry Blend view changes at same second then I press.
    CONCLUSION: "Show Read Filed Emails" button ON and OFF BUG/PROBLEM/ERROR for Gmail accounts is confirmed and it STILL NOT FIXED!
    Please spread the word to people who have all the power to influence and accelerate processes to FIX this VERY SERIOUS ISSUE or please tell me there could I send this FIX SOLUTION to to get fastest respond and get it FIXED ASAP. THANK YOU!
    STILL NO FIX!

    If you select one month for mail days to sync, only one month's worth will be synced and available - the last month which will be constantly changing to the most recent 30 days. Select No Limit for Mail Days to Sync.
    Show 1000 recent messages is for the selected mailbox only and if there are more than 1000 messages in a mailbox and you have one month for mail days to sync selected, if the last 30 days for the mailbox includes 100 messages, only 100 messages will be available.
    Are these additional server stored mailboxes separate mailboxes and what I mean by that is not sub-mailboxes for the Inbox mailbox?
    Since you have had this issue with other operating systems, the common denominator is your Hotmail account. Have you contacted Hotmail technical support regarding this issue you have had with other operating systems?
    All server stored mailboxes with an Exchange account should be available with the email client used to access the account. If all are not available when accessing the account as an Exchange account with an email client, something is wrong with your setup for these mailboxes at the server level.

  • 1 month and my issue is not fixed yet you closed my thread?

    I never got the credit applied to my account.  My account is still not fixed and its been a month! Now my bill is due! Thanks so much comcast for showing me the worst customer service ive ever seen in my entire life. What do I have to do to get this resolved? Cancel my account? Thanks for closing my thread with out solution.  http://forums.xfinity.com/t5/Billing/no-help-from-support-or-the-store-sales-agent-lied/td-p/2559631

    Hello Gunslingerx64,
    I am sorry for the delay. I have sent you a private message addressing the changes and credits applied to your account.

  • Aperture is asking to upgrade library every time I open the application, even after it has already been upgraded.  I just ran the update and it is still not fixed.  What can I do???

    Aperture is asking to upgrade library every time I open the application, even after it has already been upgraded.  I just ran the update and it is still not fixed.  What can I do???  My plug are asking me to re-register them too.  This is annoying.  Please help!!!!!

    How do you try to start the repair dialogue? By starting Aperture or by opening the Library?
    If you not already have tried it with directly opening the library: 
    reveal your Aperture Library in the Finder
    Whilst holding down Command(⌘)- option (⌥) double click on the Aperture Library.
    Select "repair library" from the dialogue.
    What about Frank Caggiano's questions above?
    It would be really helpful to know, how many libraries you have, and if this problem is restricted to one of them.

  • IPad Safari Landscape innerHeight/outerHeight bug still not fixed in iOS 7.1.1

    iPad Safari Landscape innerHeight/outerHeight bug still not fixed in iOS 7.1.1
    No bug in Chrome or other third party browsers.
    When are Apple going to fix this bug? It's painful.
    more info here:
    http://stackoverflow.com/questions/19012135/ios-7-ipad-safari-landscape-innerhei ght-outerheight-layout-issue

    Tell Apple not other users.
    Use http://www.apple.com/feedback/ipad.html

  • New small WIRED keyboard not working with bootcamp

    Greetings from Stuttgart, Germany
    I just bought one of these new small WIRED keyboards for my macbook pro (early 2008/not unibody).
    It's working fine with OSX but not with my bootcamp vista business x64: the fn-key is not recognized. After inspecting the device manager I found out that the keyboard is not recognized as an Apple keyboard like my old one (with numeric keys).
    Afer updating bootcamp to version 2.1 I uninstalled the keyboard from the device manager, plugged it in again and it was still not recognized as an Apple Keyboard
    Is there a way to manually force vista to use apple keyborad driver? Or is there an update for bootcamp on its way to solve the problem?
    Best wishes,
    Wolfgang Gross

    UPDATE: a possible solution that is NOT working:
    in device manager, for both USB Human interface devices associated to the a hardware id (05AC/021E) of the keyboard:
    Update driver > browse my computer.. > let me pick.. > show compatible hardware.. > Apple Inc./Apple keyboard 2.1.0..
    Doesn't change the keyboard (mis-)behaviour

  • Canoscan 9950F still not working with 11/26 fix from Canon

    Just reported this to Canon. Image Capture and VueScan both work. I can get the scanner to work on a MBP but not on the G4 iMac .... except on a fresh install and only one user account. I you create a 2nd user (not even migrate data, just create a 2nd user), the Canon Toolbox appears to lose its pathing to the scanner driver. Bizarre.
    I've deleted the TWAIN driver manually and using the Canon utility (from the web site). I've installed, reinstalled, uninstalled every combination of Toolbox and TWAIN driver imaginable. So it's back with Canon .... close but

    This may not help you, but here is what I found.
    I have a Flatscreen G4 iMac 1.2G. I have had no end of trouble with the USB ports since moving to Leopard.
    The first problem I had was that TimeMachine would not work with my Seagate 500G FreeAgent disk. Sometimes it would not mount, file corruption etc. Thought I had a stuffed USB adaptor.
    Somewhere amongst this greif I notice that my Canon LIDE50 scanner would not work any more.
    There are numerous threads around the place on this issue. This scanner is claimed to not work with Leopard. Anyway, at this point I disconnected the scanner and also upgraded to 10.5.1. TimeMachine now works fine.
    Since then, the scanner has been on our MacBook Pro using BootCamp. I did try Vuescan, it does work, but I'd rather use the Canon tools for what I'm doing.
    Tonight I did a bit of poking around to make sure all the files for the scanner installed in the right places. During this process I notice the USB disk had gone missing again. To cut a long story short, the USB disk and the Canon LIDE50 scanner are mutually exclusive. Plug only the scanner in, it works. Plug only the disk in, it works. Plug them both in, neither work! At this point I'm shutting down and restarting to change them over, but at least I have a work around.

  • Macbook pro keyboard not functioning with bootcamp drivers

    i was able to use all the apple keyboard functionality under window xp bootcamp. Bt after i install some other third party keyboard mapper, "did not like it" so uninstall it but then realise my original apple keyboard drivers funtionality is gone.
    According to apple info page, it says
    1)put in the OS X tiger install disk CD 1
    2) click on setup.exe
    3)Select repair drivers etc.....
    BUt when i put in the CD above , there is no setup.exe to run? i did a seach & the system did not find it either? Pls advise, is the above instruction correct? i think i just need to either repair or reinstall or reactive just the apple bootcamp keyboard drivers only. i do not want to reinstall all the apple drivers as my graphc card drivers are loaded with laptopvideo2go latest driver which i like it so much in terms of gaming performance.

    We are mainly users, so we don't know if Apple knows or not.
    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback

  • Itunes 9.0.3 64bit still not compatible with Windows 7.

    Have downloaded 9.0.3 in the hope that it will have fixed the ongoing issue of my ipod classic (80gb) still not being recognised, I am still unale to sync due to my ipod classic not being recognised! It seems that the 64 bit version actually runs as a 32 bit program (checked in task manager) and I assume the 64 bit version is supposed to provide the correct drivers to allow compatibility with 7. This is not the case. I've been on the net for months now trying to find a solution and to date there's nothing out there that works. Is anyone else having this problem and does anyone know of any fixes? Also, any chance apple can update us on what long term solution is being worked on? Given 9.0.3 was supposed to fix things, there seems to be something going wrong somewhere!

    Phew. One of the more disconcerting messages I've ever found when I've been checking people's drivers and downloads pages.
    Okay, there's a new version of the BIOS showing up on your downloads page: version 1.25, dated 2010/01/11.
    It's worth checking to see if that's your current BIOS version. One word of caution ... Acer is in the habit of threatening that the sky may fall on your head if you dare to upgrade a BIOS version. Direct quote from the relevant page:
    "Flashing the wrong BIOS can cause harm to the system. Acer recommends that you should only upgrade your firmware/drivers if you have been instructed to do so by an Acer Customer Care representative. By using these firmware/drivers you agree to accept the possibility of product failure."
    I'm not entirely sure how seriously to take that ... but it probably would be best to check with Acer support prior to attempting any BIOS upgrade.

Maybe you are looking for

  • How to download payload from b2b_instancemessage view in Oracle b2b 10g

    I am not able to extract message payload from B2B_INSTANCEMESSAGE VIEW. when i execute this query: select payload from b2b_instancemessage where documenttype like '%rsConfirmIncid%'; the output I get is "BLOB" I need the complete payload. can somebod

  • ITunes Store Connection and Error #11333

    I've been getting jerked around about this error as well, and I'm sick of it!!! I can't believe that there is know one available @ Apple with the intelligence and capability to solve this problem. APPLE NEEDS TO START GETTING SOME BAD PRESS & PUBLICI

  • Acrobat 8 Pro, IE 7, PDFmaker missing

    I do not know what happened but all of a sudden the PDF toolbar is missing. When I right-click, the context menu items are missing. I've repaired my Adobe installation and re-booted. Any ideas? I've searched the internet high and low and haven't foun

  • WCS AP Templates help. Vlan Override Issue

    Hi all, WCS ver 5.2.110.0 When I create a LWAP template, to apply a WLAN override to all my APs, the WLAN I'm looking for is not in the list. Previous WLANs are listed, that are no longer resident on the WLC4404. The current WLAN configured in the WL

  • Workorder_update-In_Update is not working

    Greetings, We are using a Badi named workorder_update for maintenace order tracking.Here the problem is ,the methods At_save ,Before_update works coorectly in order.But we are not able to access the method IN_Update.The enhancement is implemented but