HT3986 trackpad problem in windows 7/windows 8

Hi
My problem is that the trackpad is not supported by bootcamp when pc return from sleep mode with windos 7 (32 and 64bit) and the same problem with windows 8 (32 and 64bit).
Can anyone help me please?
thanks.

Can someone please at least say me if this is the normal behavior of the trackpad, so I dont waste my time trying to fix it?

Similar Messages

  • Twist s230u trackpad haywire since update to Windows 10

    My trackpad and trackpoint worked fine under Windows 8.1, but since I updated to Windows 10 they have gone haywire.  The cursor moves in the opposite direction from the movement on the trackpad or trackpoint.  If I move my finger right on the trackpad, the cursor on the display moves left.  If I move my finger up, the cursor moves down.  Sometimes the cursor moves in the correct direction, but then it goes to the opposite direction after a single tap.   I have tried two different driver versions for the Synaptics Thinkpad Ultranav driver for Windows 10 - 19.0.16.0 (driver date 7/9/2015), and 19.0.12.61 (this version is currently available for download on the Lenovo s230u driver download page).  The 19.0.12.61 is the lower version number but it is listed as dated 7/30/2015.  I have had the problem described above with both versions.  I ran "Update Driver" from Device Manager and 19.0.16.0 was installed over 19.0.12.61.   I tried deleting the Synaptics driver altogther, and rebooted - after i reinstalled a driver the problem came back. Has anybody else had this problem since upgrading to Windows 10?  Has anybody found a fix?    

    I have had the same problem with my 12-inch 1.5GHz powerbook. However in my case it just started happening out of the blue -- the trackpad doesn't work at all, and occasionally I'll check again and it will work (otherwise, just using a USB mouse).
    I was running OS X 10.4.5 when this occurred and I thought an upgrade to 10.4.6 would help, but it didn't. I am wary of upgrade to newest version of OS X because I have firewire peripherals that take time to update their drivers to work with Mac OS updates, but I will update to 10.4.7 if I absolutely have to.
    I will try repairing permissions, but I doubt that will help. I've already reset the PMU (first time for me on this powerbook -- holding down 3 buttons and pressing and releasing power button -- there's no confirmation I can see that PMU was reset). Is there a way to tell PMU was successfully reset?
    Thanks!
    Powerbook 12-inch 1.5GHz   Mac OS X (10.4.6)  

  • I had a problem installing icloud on windows 8.1. What should I do? At the end of the installation process there is a error message.

    I had a problem installing icloud on windows 8.1. At the end of the installation process there is a error message.What should I do? 

    I'm guessing that you have checked and complied with the system requirements?
    System Requirements
    Microsoft Windows 7 or 8
    Microsoft Outlook 2007 or later or an up-to-date browser (for Mail, Contacts, Calendars)
    Internet Explorer 9 or later, Firefox 22 or later, or Google Chrome 28 or later (for Bookmarks)
    Broadband Internet access
    Note: If you are upgrading from iCloud Control Panel 1.1 or earlier, you will need to sign out of iCloud Control Panel and uninstall it before downloading iCloud Control Panel 3.1

  • Is there a problem with JFrame and window listeners?

    As the subject implies, i'm having a problem with my JFrame window and the window listeners. I believe i have implemented it properly (i copied it from another class that works). Anyway, none of the events are caught and i'm not sure why. Here's the code
    package gcas.gui.plan;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.util.Hashtable;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import gcas.plandata.TaskData;
    import gcas.util.GCASProperties;
    import gcas.gui.planlist.MainPanel;
    * MainFrame extends JPanel and is the main class for the plan details window
    public class MainFrame extends JFrame implements WindowListener
         * the container for this window
        private Container contentPane;
         * a string value containing the name of the plan being viewed
        private String labelText;
         * a string value containing the name of the window (GCAS - plan list)
        private static String title;
         * an instance of JDialog class
        private static MainFrame dialog;
         * hashTable that correlates the task name to its id as found in the
         * plan
        private Hashtable taskNameToId = new Hashtable();
         * an instance of taskSetPane.  This is the current instance of taskSetPane
         * being viewed
        private PlanTaskSet currentPane;
         * instance of TaskData class.  Each instance will hold information on
         * an individual task
        private TaskData taskData;
         * hashTable containing instances of the taskSetPane class
        private Hashtable taskSetPanes = new Hashtable();
         * an instance of the OuterPanel class
        OuterPanel mainPanel;
         * an instance of the ButtonPanel class
        ButtonPanel buttonsPanel;
         * an instance of the LeftPanel class
        LeftPanel leftPanel;
         * an instance of the the GCASProperties class
        GCASProperties gcasProps;
        private static MainFrame thisPlanMain = null;
        private MainPanel planListMain;
         * constructor for MainFrame
         * @param frame the parent frame calling this class
         * @param locationComp the location of the component that initiated the opening of the dialog
         * @param labelText the name of the plan that is being viewed
         * @param title title of window
        private MainFrame(JFrame frame, Component locationComp, String labelText,
                String title)
            super(title);
            gcasProps = GCASProperties.getInstance();
            mainPanel = new OuterPanel(labelText, currentPane,
                    taskNameToId, taskSetPanes);
            leftPanel = mainPanel.getLeftPanel();
            System.out.println("LABLE: " + labelText);
            leftPanel.setMainPanelContents();
            buttonsPanel = new ButtonPanel(labelText, taskSetPanes,
                    taskNameToId, leftPanel);
            contentPane = getContentPane();
            contentPane.add(mainPanel, BorderLayout.CENTER);
            contentPane.add(buttonsPanel, BorderLayout.PAGE_END);
            this.addWindowListener(this);
            this.labelText = labelText;
            pack();
            setLocationRelativeTo(locationComp);
            this.setVisible(true);
            planListMain = MainPanel.getInstance();
            planListMain.setVisible(false);
        public static MainFrame getInstance(JFrame frame, Component locationComp, String labelText,
                String title)
            if (thisPlanMain == null)
                thisPlanMain = new MainFrame(frame, locationComp, labelText,
                        title);
            return thisPlanMain;
        public static MainFrame getDialogObject()
        {   //from the location this is called (ButtonPanel), this will never
            //be null
            return thisPlanMain;
        public static void setABMDDialogNull()
            thisPlanMain = null;
         * returns an instance of MainFrame
         * @return MainFrame instance
        public static MainFrame getDialog()
            return dialog;
         * setter for MainFrame
         * @param aDialog a MainFrame instance
        public static void setDialog(MainFrame aDialog)
            dialog = aDialog;
         * window opened event
         * @param windowEvent the window event passed to this method
        public void windowOpened(WindowEvent windowEvent)
         * The window event when a window is closing
         * @param windowEvent the window event passed to this method
        public void windowClosing(WindowEvent windowEvent)
            gcasProps.storeProperties("PlanList");
            MainPanel abmd = MainPanel.getInstance();
    //        planMain = this.getDialogObject();
    //        if(planMain != null)
    //            planMain.setVisible(false);
    //            abmd.setVisible(true);
    //            planMain.setABMDDialogNull();
            if(this.getDialogObject()!= null)
                abmd.setVisible(true);
                setVisible(false);
                setABMDDialogNull(); 
         * Invoked when the Window is set to be the active Window
         * @param windowEvent the window event passed to this method
        public void windowActivated(WindowEvent windowEvent)
         * Invoked when a window has been closed as the result of calling dispose on the window
         * @param windowEvent the window event passed to this method
        public void windowClosed(WindowEvent windowEvent)
         * Invoked when a Window is no longer the active Window
         * @param windowEvent the window event passed to this method
        public void windowDeactivated(WindowEvent windowEvent)
            System.out.println("HI");
         * Invoked when a window is changed from a minimized to a normal state
         * @param windowEvent the window event passed to this method
        public  void windowDeiconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
           System.out.println("Invoked when a window is changed from a minimized to a normal state.");
         * Invoked when a window is changed from a normal to a minimized state
         * @param windowEvent the window event passed to this method
        public  void windowIconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
    //        System.out.println("Invoked when a window is changed from a normal to a minimized state.");
    }anyone know whats wrong?

    It turned out that my ide was running the old jar and not updating it, so no matter what code i added, it wasn't being seen. Everything should be fine now.

  • Problem with shares on Windows 2003R2 server from a Windows 8.1 PC

    I'm having problem with shares on Windows 2003R2 server from a Windows 8.1 PC.  It times out when I try to copy a file from my PC to the server and I get an error message saying "There is a problem accessing network drive W:\. Make sure you are
    connected to the network and try again."
    I have no problem copying files from the server to the PC.
    Any ideas?

    Hi,
    How about your problem now? Have you test other machine also installed Windows 8.1? Did they have this problem?
    To diagnose this problem, firstly, please check Windows 2003R2 firewall settings, also can disable firewall temporarilly for test.
    Secondly, try to use Network Monitor to capture network communication package for test.
    Network Monitor:
    http://www.microsoft.com/en-us/download/details.aspx?id=4865
    Roger Lu
    TechNet Community Support

  • Problem with games in windows

    I'm having a problem running games, and I can't figure out why it's happening or how to fix it. I'm using a base model Macbook, about three weeks old, running Windows XP Home...first with SP2, now with SP3. I had gb of RAM, but I dropped it back down to the stock RAM to see if maybe a bad stick was causing the problem. No performance drop in the games, so I'm leaving it that way for the time being. This is my second Macbook, and my first was replaced due to a pletora of other problems. It didn't do this, though.
    Randomly in games, I get a blue screen and the computer shuts down. This is the error I get:
    Error code 000000ea = "THREADSTUCK_IN_DEVICEDRIVER" - A device driver is spinning in an infinite loop, most likely waiting for hardware to become idle. This usually indicates problem with the hardware itself, or with the device driver programming the hardware incorrectly. In many cases this is the result of a bad video card or a bad display driver.
    Mainly the game I'm running is Phantasy Star Universe, which worked perfectly fine on my old Macbook, which was also a base model, but a couple generations older. It had the Intel GMA 950 chipset, where the newer one has the Intel GMA 965 chipset. The game actually runs slightly worse than it did on the old machine, but the game by no means pushes the Macbook to it's limits. Anyway, from anywhere between 10 to 40 minutes into the game, it'll blue screen. It's not just this game, though, it's done it elsewhere, but not nearly as frequently as when playing the game. I also have to point out that I don't run anything else when playing the game. I intentionally shut down everything that's not important when I run games, to avoid any conflicts.
    I've tried a number of different versions of Intel's drivers, and played with the settings, gradually downgrading it's performance. I've tried re-intalling the game, changing settings in the game, reinstalling windows, updating windows, changing my ram. I'm grasping at straws here, and I don't know what's to blame. I want to point my finger at bad drivers, or bad hardware. I' blame the game if it behaved the same way on my old Macbook. I initially thought it was the game, because it kept happening in the same areas, but I proved it to be coincidence. The hardware isn't THAT different. From what I've been told, the graphics chipset in the newer Macbook should perform a lot better than it does, but Intel's drivers are kind of...blah. But are they blah enough to cause chronic issues? If it IS a driver issue, at this point the only solution is to wait for Intel to update them and hope the problem is fixed. I'm extremely paranoid about it being a hardware issue, due to my experience with my old Macbook.

    Just a thought, but what if its spyware or a trojan horse?/Virus?
    e-mail me back k?
    in the game of world of warcraft, the game's configurations make it easier to catch a virus from other people. Games like that can sometimes bypas the firewall.
    Let me know when you find out k?
    I hope i've helped.

  • Problem with iTunes in Windows XP

    I am having a problem loading iTunes in Windows XP service pack 2. Every time I click on it, it seems to load for a little while, and then a window pops up saying "iTunes has encountered a problem and needs to close". When I clicked on the details tab, it showed me a bunch of stuff I couldn't understand. Here's what it said:
    AppName: itunes.exe
    AppVer:7.6.2.9
    ModName: unknown
    ModVer: 0.0.0.0
    Offset: 00000000
    How do I get iTunes to work right?

    The first question, Have you installed any of the following:
    ACE & K-Lite mega codecs package, QT alternative, Storm codec, WinAVI video converter
    These are know to cause troubel with Quicktime and must be uninstalled before proceding.
    It is also a good idea to go to your Control Panel and try to launch QUicktime preferences - you need to be in classic view to see it.
    Post any error message in full. This error message can give a clue to the presence of problem codecs if you are not sure.
    Next do a removal of Quicktime with installer cleanup, followed by an install of the latest version.
    I will give a method for complete removal, cleanup and reinstall of iTunes, Quicktime and related components, but in your case it may be possible to just do the QUicktime part. Don't forget to delete the recommended files from your system32 folder.
    == uninstall with cleanup ==
    Download a fresh copy of iTunes and the stand alone version of Quicktime
    http://www.apple.com/quicktime/download/win.html
    http://www.apple.com/itunes/download/
    Download and install Microsoft Installer cleanup utility, there are instructions on the page as well as the download. Note that what you download is the installer not the program – you have to run it to install the program
    http://support.microsoft.com/kb/290301/
    Now use the following method to remove iTunes and its components:
    XP
    http://support.apple.com/kb/HT1925
    Vista
    http://support.apple.com/kb/HT1923
    If you hit a problem with one of the uninstalls don't worry, carry on with the deleting of files and folders as directed in the method.
    Restart your PC.
    Run the Microsoft Installer Cleanup Utility. (Start > All Programs > Windows Install Clean Up)
    Remove any references you find to the programs you removed - strictly speaking you only need to worry about those programs where the uninstall failed.
    restart your PC
    Install the stand alone Quicktime and check that it works.
    If it does, install iTunes.

  • Network problems with TC and windows vista

    When I try to transfer data from my laptop using Windows vista to the TC, I get an network error message after a few seconds saying the computer is not connected to the network. I have no problems transferring small files (that take less than a few seconds to transfer) and the external router, my laptop and the TC are located close to each other. I tried almost everything but i don't know what the problem is.
    Any suggestions?

    Hello Bastiaandp. Welcome to the Apple Discussions!
    There is quite a bit of dialogue going around the Internet about Windows Vista & Windows 7 when it comes to file sharing with either the Apple AirPorts or Time Capsules. Most of this dialogue seems to be revolving around the version of SMB used by the newer Microsoft OSs and that used by these routers for files sharing.
    A number of suggested solutions have been proposed, but none at this time, have provided a "permanent" solution. I too have experienced this same issue and have tried a number of these solutions. What finally worked for me was to make sure that: 1) The Workgroup name used on my Win 7 computer exactly matched the Workgroup name setting on the Disks > File Sharing tab within the AirPort Utility for my base station, & 2) That this name did NOT include any spaces. In my case, I used WORKGROUP for both settings.
    Since doing so over six months ago, I have had no problems copying/moving files between my PC and the AirPort, regardless of their size.

  • My problem is on my Windows PC.  I am getting the error message, "The procedure entry point sqlite_3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I am told this is related to iTunes.  Any help?

    I use both a Mac and a PC.  My problem is on my Windows 7 PC.  I am getting the error message, "The procedure entry point sqlite_3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I am told this is related to iTunes.  Any help out there?  Thanks

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Restart the programme all should be well
    In case that your OS is (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Now paste it in the folder  C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Restart the programme, it should not display that message, it should be clear.
    Good Luck

  • Problem Updating iTunes with Windows Vista

    I downloaded iTunesSetup.exe and ran as an Admin and during the installation I get an error message that says "Could not access network location %APPDATA%\."
    What does this mean and how do I fix it?

    Apple, apparently, had a fix up for an earlier version of itunes, but that is gone from the web page, and has been yanked.
    Yes, there are big problems with iTunes for Windows. Until these are rectified, your Ipod will be a paper weight.

  • Problem Installing 817 on Windows 2000 with RAID Array

    I am having a problem installing Oracle under windows 2000 which has 2 x 60 GB discs configured in RAID array. When I run the setup program the cursor goes busy for about 10 seconds and returns back to normal and nothing happens !. No errors nothing.
    However when I run the Object Manager in the ods_preinstall directory it starts but in the log file I get the following error message:-
    02/14/02 09:46:18 : (892) : Error in IO Control call for disk PhysicalDrive0 (Error 21)
    02/14/02 09:46:19 : (892) : The count = 28
    02/14/02 09:46:19 : (892) : The signature is 0x443aa035
    02/14/02 09:46:19 : (892) : Error: First Partition of the disk must be an extended disk
    02/14/02 09:46:19 : (892) : Found the partition: 7
    Any idea whats happening....? Has anyone seen this before. Do I need to do something special in teh RAID..?
    TIA
    Martin

    Here are some possible solutions:
    1. The installation notes state that you must be logged on as Administrator to be able to install 9i. Are you logged on as the Administrator? Being logged on as user01 with Administrator priviledges isn't the same as Administrator.
    2. Is the disk full? If I remember my installation correctly, I needed 3 times the size of the files. The documentation will tell you how much space you need.
    Hope these two questions help
    Regards,
    Michael

  • I haveing problem installing itunes on Windows 7. Erorr masage is "There is a problem with this Windows installer package. A program reguired for this install to comlet coudnt be run. Contact your support personnel or package vendor."

    Hello,
    I haveing problem installing itunes on Windows 7. Erorr masage is "There is a problem with this Windows installer package. A program reguired for this install to comlet coudnt be run. Contact your support personnel or package vendor."
    Please heLp.
    Thank you.

    Repair your Apple Sofyware update.
    Go to START/ALL PROGRAMS/Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install

  • Problem with touchpad and Windows 8.1. Acer Aspire E5-511

    I bought an Acer Aspire E5-511, but I have problem with touchpad and Windows 8.1.The touchpad (Synaptics) is not working with Windows 8.1 x64, but it works fine with Windows 7 x64 and Windows 8 x64.When I install Windows 8.1 and have to choose” language to install” I can’t choose anything with the touchpad. I should plug in my mouse to continue. I doesn’t work even when it’s fully installed and with latest driver (available only for win 8.1 x64) from Acer’s website. I tried with an older driver, but had no success. I updated BIOS, but it doesn’t work again. In hardware IDS in device manager it shows HID\… not ACPI\… (like win 7/8). Fn+F7 doesn’t help.When I try to install Windows7/8 the touchpad is working properly at the beginning (I can choose ”language to install”, “Time and currency format”… and the touchpad works after install even without driver).

    SOLUTION So guys after deep research and troubleshooting I found that you need to keep notice of a few things at time of installation: Installation Mode: UEFI (only)- LEGACY would create touchpad issues. after installation of windows just follow the driver installation hierarchy 1.Intel NB_Chipset_M Baytrail-M 2.Intel I/O Driver then rest of the crap. Note:After doing all this make sure your touchpad is active >> Fn+F7 Just wished if this solution came from an acer executive , the world would have been a better place , but anyways this is what community is for. Enjoy everyone

  • When I install itunes 10.5.3 i get a message " there is a problem encountered with your windows installer package ".... and i can't install it

    When I install itunes 10.5.3 i get a message " there is a problem encountered with your windows installer package ".... and i can't install it

    Have you completed all windows update including service Pack1?  If not, please complete all the windows update then follow steps below to re-install all over.
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime  
    Apple Software Update  
    Apple Mobile Device Support  
    Bonjour  
    Apple Application Support
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • Windows 8.1 Problem with games from windows store.

    I've got a problem with games from windows store. The installation is going well without any problems, however when I try to open it it's loading and then it turns off. The same problem happens when I try to use Games for Windows. I've use a sfc scan and
    it shows some errors but unfortunately it cannot fix them. Should I share the CBS log or find the solution somewhere else? I hope you help, best regards.

    Hi,
    According to my experience, the problem like store game app open failed probably caused by hardware driver. such as Audio and Graphic driver. So, first of all, please try to reinstall these two driver to fix this problem for test.
    In addition, for SFC scan failed problem, it can be caused by many reasons, I would suggest you use another command to fix your system for test.
    Dism /Online /Cleanup-Image /ScanHealth
    Also you can test SFC command in Windows 8.1 safe mode.
    Thirdly, if problem persists, please check Event Viewer, generally speaking, it would record the app open failed events.
    Roger Lu
    TechNet Community Support

Maybe you are looking for

  • How to change Default document size for CC Library Graphics (InDesign)

    Good morning -- I have just discovered the amazing uses of the CC Library setup in InDesign and would love to be able to use it as a tool to collaborate template galleries amongst coworkers. I work in an industry that offers many different templates

  • Layout of report

    Dear All: I want to create a report which will have a layout of Transaction ME5A, which is not an ALV layout, i guess. I am not understanding which functional module to use or how to generate that layout. Does anyone have any sample code which can he

  • Any reason to upgrade my E51 from 200.34.36?

    The phone is working fine for me, except for a few minor annoyances.  About the only reason I'd consider upgrading is if it would fix any of these. 1.  My previous phone, a Nokia 6133, had timed profiles, where I could select a profile for some lengt

  • Validations(TCode GGB0)  are client dependent how to move from one client t

    Hi All, I have done chabges in Validation set (Requirement from FICO Functional). As Validations are client dependent. I done the changes in 200 client now Functional want me to do these in 100 client. So Will SCC1 TCode will wrok in this case ? Or t

  • After installing lion get an error -50 when trying to burn music to cd - hand no problem before lion

    Is anyone else having this problem??  I always burn audio books/music to cd and have had no problems doing so UNTIL I installed Lion.  Now I keep getting an error message. It is error -50.  This NEVER happened before. I'm very frustrated - - I tried