My touchpad is not working sometimes

sometime my touch pad is not working i updated dirver also no use.
and my computer in warranty period my smart center also showing error for last four months.

Hello there, It sounds like you're going to need to replace your Touchpad. Your warranty states that you can only get your Touchpad buttons replaced by an Authorized Service Provider. However, that's not the case you have. I recommend contacting the HP Support Center via phone to arrange for your notebook to be repaired. Best of wishes getting it fixed! Best Regards,Shawn

Similar Messages

  • Touchpad does not work even after format - x220t

    Hi there,
    I've had my X220 tablet for about 10 months and it has been great.  For the last month however, the touchpad and touchpoint have become flaky.  When rebooted or coming out of standby, the touchpoint/touchpad often did not work; after resetting a few times, i would work, but then stop working again when the system when into standby mode.
    I thought this was a driver issue, but uninstalling and reinstalling to the newest drivers did nothing.  I have also updated/reset the BIOS.
    I have more recently have not been able to get the touchpad working at all now and relying on just the touchscreen for input is very frustrating. 
    When Windows 8 CP came out this week, I decided to give the computer a fresh format and reinstall Windows --- maybe that would resolve the issue. No luck.  The touchpoint/touchpad did not work even in Windows 8.
    I read around a bit and have tried disabling JUST the touchpad in the BIOS, and amazingly, the touchpoint will work fine when I do that.  When I disable just the touchpoint or leaving both enabled, neither the touchpad or touchpoint will work.
    As far as I can tell from what I have been able to diagnose, the touchpad is damaged and is causing a conflict with the touchpoint when enabled.  I am not sure of this, but it is my belief now.
    Are there solutions out there for me?  I do have 2 months left on my warranty, but I hope to keep mailing my notebook in for support as a last resort.
    thank you,
    steve

    xyster wrote: 
    When Windows 8 CP came out this week, I decided to give the computer a fresh format and reinstall Windows --- maybe that would resolve the issue. No luck.  The touchpoint/touchpad did not work even in Windows 8.
    If you are ready to reinstall Windows, try this method:
    http://forums.lenovo.com/t5/X-Series-Tablet-ThinkPad-Laptops/My-X220t-Clean-Install-Method/td-p/6612...
    If after that your trackpoint/touchpad still don't work, I think one of them (or both) is defective.
    X220t | i7 | 320GB HDD | 8GB RAM | WIN7 PRO
    IdeaCenter A520 | i5 | 1 TB HDD | 6GB RAM | WIN8.1

  • Touchpad is not working properly on Satellite L30-X10

    Hi to all of you.
    I've got the following issue: On my notebook the scroll on the touchpad is not working. If somebody can tell me how to fix this problem it would be kindly appreciated.

    Hi,
    I am not sure if this can be a good solution but maybe its worth to try it:
    1. Download the latest touchpad software from here:
    http://eu.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp
    2. Remove the old software
    3. Reinstall the downloaded software
    4. Go into your mouse properties and check if everything is configured (especially the scroll function)
    Give some feedback in case of further questions..
    Cheers

  • Tecra M3 - touchpad is not working with Windows 7

    I have a Tecra M3 that I have updgraded to Windows 7. The touchpad is not working.
    The Toshiba website does not have Windows 7 drivers for this model. I have tried installing the touchpad driver and TVAP from the A11 model but still cannot get it to work.
    Can anybody help? The audio doesn't seem to be functioning either.

    Hi buddy,
    As Silas wrote, it could be a little bit problematic to find the correct drivers because it doesnt support Vista...
    You should try a touchpad driver from another model like Tecra M4. This should work.
    But Im wondering about this. Basic functions of touchpad should also work without special driver.
    Can you use the touchpad at the moment?

  • The click at touchpad is not working, please help!!!

    I use Macpro, recently the click at touchpad is not working, please help!!! Thank you !!

    For this issue AppleCare support told me to so a SMC reset as follows:
    Power the machine OFF.
    At the SAME TIME hold down the following buttons:
    Shift
    Control
    Option
    Power
    Then release all buttons.  Power up the Macbook and see if the trackpad button work.
    Hope this helps.
    Bill

  • In Flex application functionality is working sometimes and not working sometimes..

    Hi,
    Please help me on this..
    In my flex application some functionality is working some times and not working sometimes..
    In my project i have 5 sections with 5 separate screens..Each screen is of one diffeent module.
    After logining into the application:
      I will go to one screen..First time every functionality is working in that screen..
    Ex:: I have a screen with datagrid.From that user will select one job name from datagrid click on next button..
    Based the job name the user selected i have to display some information in next screen and customer names.customer names is a combo box..
    below is the code:::
                   public function populateAllOEMCustomers(event:ResultEvent):void
              1)     var object_CustomerList:CustomerList = event.result as CustomerList; //Assigining result object values to Object reference variable.
              2)    var allOEMCustomersCollection:ArrayCollection = new ArrayCollection(); //Declaration ArrayColliction referance variable.
             3)       var i:int=0;
             4)      var customerComboLabel:Label = new Label();
              5)      for (i = 0;i < object_CustomerList.arryCollCustName.length; i++)
                        var strCustName:String = object_CustomerList.arryCollCustName.getItemAt(i).toString();
                        var strCustId:String = object_CustomerList.arryCollCustId.getItemAt(i).toString();
                        customerComboLabel = new Label(); //Dynamic declaration of label.
                        customerComboLabel.name = strCustName; //Assinging the customer name to the Label name field.
                        customerComboLabel.text = strCustId; //Assingning the customer id to the Label text field.
                        allOEMCustomersCollection.addItem(customerComboLabel); //Adding Lable into the ArrayCollection referace variable.                                       
                    //customerComboID.selectedItem = "--";   
                    OEMCustomersComboID.dataProvider = allOEMCustomersCollection;
                    OEMCustomersComboID.selectedItem = -1;
    This functionality is working fine when i visit to this screen first time..If you go back to another screen and come back to this same screen and click on next button this time customer names combo box has no customer details..I am getting Nullpointer Exception and it is showing the line number 5( i have given the number for code given above..)
    If i change the first line of the code to below code:: every time the above functionality is working fine.Not getting any error msg..
      var object_CustomerList:Object= event.result ;
    If i  type cast it to specific class(CustomerList) ,functionality is not working ..getting null pointer exception..If i type cast it to Object everything is working fine..In my code wherever i have typecasted it to specific class functionality is not working(gettingNullpointerExcepion).
    Please help me on this..I am not getting what could be the reason..
    I am using::Flex 3,Flash player 10.1
    Thanks in advance..
    Regards,
    Satya

    Hi Satya,
    This sometimes as in your case might not work as the way you have specified the RemoteClass attribute in your AS class. As somtimes there may be a case as before it is mapped to a server side you are returned the data and so that you may not get the data as your Custom class but as normal Object type.
    So in order to avoid this you can map the server side class to AS classes in the PreInitialize handler itself as shown below:
    Specify the preinitializeHandler in your main application and write the below function.This way also you can map AS classes with the server side. So that you will not have any problem referring your application as AS class types.
    You can use the same line for registering all the classes. By using this you can remove all the  [RemoteClass] attributes on all AS classes and include it at single place.
    preinitialize="onPreinitialize()"
    private function onPreinitialize():void
      registerClassAlias("com.expeditor.ScriptAdmin.Objects.CustomerList", CustomerList);
    Here in the above line of code the string in quotes refer to the namespace of the Server side class and the latter is your AS class. Also dont forget to import the namespace of the corresponding AS class in the file.
    Try this and let me know..
    Thanks,
    Bhasker

  • KYPE Account its not work sometimes

     me have really problem with my SKYPE Account  its not work sometimes. what about it?
    [Topic title updated by moderator to be more descriptive. Original topic title was: "Re: Не отображаются контакты."]

    It's a one year limited warranty, not a guarantee. You have 14 calendar days  from the time your items are delivered to initiate a return as noted here.
    Not all new Mac's have issues with Wi-Fi including mine running v10.9.4.
    Unless you state exactly which troubleshooting steps you have taken that didn't work, we have no way of knowing.
    Network preferences may be corrupted.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    /Library/Preferences/SystemConfiguration
    Click Go then move all the files in the SystemConfiguration folder to the Trash.
    See if that makes a difference.
    Your Mac will generate a new SystemConfiguration folder for you.
    If that doesn’t help, try here >  Wi-Fi: How to troubleshoot Wi-Fi connectivity

  • HT201412 Message tones is not working sometimes

    1.My iPhone 5 message tones is not working sometimes suddenly, have to restart device or eventhought sometimes is not working too after restart my device. I have to reset my iPhone n restore again .
    2.Restore with iOS is not as good as last time coz I can't get back all my iOS photo stream photos n all the photo in my albums too. This is ***** n takes few days also not complete download all of my photos.
    3.some of my iPhone apps will suddenly not respond or will log out to home screen suddenly . Have to open the apps few times only its working as normal .

    Hi,
    I have nothing found regarding your issue. But maybe a look at SAP note 638058 will give you a hint.
    Regards,
    Klaus

  • "access restrictions" did not work sometimes when using 3-tier DeskI.

    My customer found that "access restrictions" did not work sometimes when using 3-tier DeskI.
    But this issue can be solved by logging on from another machine, or restarting the DeskI.
    For I can reproduce this issue, so I just want to know that:
    1.What is it probably related to?
    2.If this issue happens again, what can I suggest my customer for tracking it?
      For example, get some log files from servers etc.
    Thanks!

    Hi Sarah,
    Also you can try the following solution.
    1. Import the universe.
    2. Go to manage access restrictions
    3. Remove the restriction .
    4. Again create the rescrition and unchecked the " limit size of result set to"
    5. Now assign it to the unlimited results group ( this is the name of
    the group we have given to those users who should be able to retrieve
    more than X rows)
    6. Now we save the universe. (Dont export the universe).
    I hope this will help you.
    Regards,
    Sarbhjeet Kaur

  • My home button is not working sometimes and at the store they dont want to take it for repair because the problem did not show up at that time

    My home button is not working sometimes and at the store they dont want to take it for repair because the problem did not show up at that time

    When normally powering the phone, there would not be a loading bar, you would just see the Apple logo. You can try a reset of the phone, hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone will reboot.
    You can take the phone to Apple, by making an appointment at the Genius Bar to have the hardware checked. Apple handles warranty and post-warranty issues, not Verizon. Have Apple look at the hardware to see if there are any problems.

  • Re: Satellite L500D - Touchpad "touch" not working

    Hi everyone,
    my touchpad's touch function (to emulate left-clik by tapping the touchpad) is not working any more. I can move the mouse with the pad.
    Also the left button below the pad is not working - the right one is.
    I've already tried :
    -Updating the driver
    -Fn+F9
    -The touchpad settings - the "touch" function is enabled
    -The Toshiba hardware test - passed
    but with no success.
    Not sure whether it's a software issue or a hardware one.
    Any suggestions?
    Thank,
    Andres

    Hi
    As far as I know the option is called Tap to Click
    You should check if this enabled in the touchpad settings.
    >Also the left button below the pad is not working - the right one is.
    Maybe this has something to do with the fact that the left click by taping is not working
    Its hard to say what could cause this
    As I said; the options should be checked once again in control panel -> mouse -> device settings -> settings (or properties)
    If all the settings would be ok, then a touchpad hardware issue might be possible

  • Touchpad is not working anymore after Windows Update

    Issue:
    After a Microsoft Windows update it may occur that the touchpad is not working anymore.
    Resolution:
    Press the shortcut function keys (typically F5 or Fn+F5) to enable the touchpad again. Please refer to the user manual of your notebook to find the correct key combination for enabling the touchpad.
    More Info: aps2.toshiba-tro.de/kb0/TSB5303QQ0002R01.htm

    Check the settings:
    Press FN+F9 or hotkey to turn on touchpad.
    If the problem persists then enter the BIOS and make sure BIOS is set to default.
    S.Sengupta, Windows Entertainment and Connected Home MVP

  • Touchpad Buttons Not Working

    I purchased this Toshiba Satellite C55D-B5102 last week, I installed Windows 10 last night.  After installing Windows 10 the touchpad did not work.  I have since fixed that issue.  However, now the buttons for the touchpad are not working and I'm unable to find a solution to this issue. I am able to use a wireless mouse for functionality, so that helps, however, this is a very hindersome problem...  Any guidance would be much appreciated.

    Hi I´m not sure if this gives any guide but this what I have done to "Win 10 + touchpad problems". I have a Satellite P30 W-B which is brand new. I installed Win 10 yeasterday and my Touchpad didnt work any good after that, I only had the cursor function and a click function working, no right click or so. I checkad all possible solutions here and there and what I finally did was to uninstall the ELAN tocuhpad driver and a ree-start. I thought the touchpad would be dead after that but it works fine! Now its a MS softwere instead automaticly, quite old. Now it works like before. THe ELAN driver came with he Win 10 package. I might have lost some functions incoperated in the ELAN driver like scroll or so but I wont install any new driver unless its working properly with Win 10 so I can wait for that. I hope this can be something for the moment.

  • Z50-70 touchpad is not working - Windows 10

     Hello. I installed Windows 10 to my Z50-70, and now my touchpad is not working. It worked like few hours.My USB mouse works fine. This laptop is new, I bought it 3 weeks ago.  What should I do?  Thank you!

    Just found the same problem with my lenovo Z50. Touch pad completely non responsive. Under start menu, settings, devices, mouse & touchpad, additional mouse options, elan tab. The elan touchpad settings were completely grayed out and unavailable. So from there I went to the window search in the task bar and typed in "computer management " and opened the computer management desktop app. Under device manager selected mice and other pointing devices and then elan input device. In the elan properties window that opened I selected uninstall to uninstall the driver and in the next box that opened warning that the driver was about to be uninstalled  l checked the delete driver and then OK. Then restarted windows. In the process of restarting windows detected the elan touchpad as a new device and installed the driver in time for the login screen. So my elan touch pad is now working again. I am assuming that the driver had been corrupted in the upgrade from Windows 8.1 to 10. I hope that this information is of help to you. Should be a bit easier for you as you have an eternal usb mouse that works, I had to remember the old shortcuts keys from back in the day when the mouse was not that common.       

  • Hp 430 laptop touchpad is not working afternet connecting rj-45 cable

    hp 430 laptop touchpad is not working after connecting rj-45 cable, Please help me.

    Hello 9560030067, and welcome to the HP Forums.
    I see you are having issues getting your printer to be recognized.  I would be happy to help you with that!
    First, I would suggest disconnecting the USB cable, and Uninstalling the Printer Software.
    Once it is uninstalled, reinstall the software.  Be sure not to plug the USB cable back in until the software prompts you to connect it.  Also, when plugging the USB back in, I would suggest plugging it into a USB 2.0 port, not a 3.0 port.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

Maybe you are looking for