TB display devices don't work properly under windows

I went out and picked up a TB display last night to pair with my 2011 mbp. I live in windows about 80% of the time and expected there to be no issues with the basic usb hub built into the display – unfortunately that does not seem to be the case. My Apple usb keyboard (also brand new) and dell usb mouse both hang/freeze/work erratically when connected to the back of the display, as does my Jabra pro headset.
I can make the behavior 10 times worse simply by using hardware built into the display, such as the display's facetime camera. If I fire up Lync and start a video chat, my keyboard and mouse become nearly unusable. My basic testing under Lion appears to confirm this is an issue with Apple’s boot camp drivers as things work properly under OS X. Problem occurs both with win7 and win2008r2, I have rebuilt both OSes twice to confirm.
The firmware/drivers of the display itself appear to be the problem.  The peripherals work fine plugged directly into the laptop.  Thunderbolt itself appears to be the root of the issue, as the facetime camera exhibits the same pauses/lags even with no peripherals plugged into the display (unless the facetime cam is a usb device and not a pci-e device, in which case perhasp the usb implementation is to blame).  Hope there will be a firmware/driver fix soon.

I have marked this as answered as it was more a post to help others who may have experienced the same problem I did and didn't get a reply or just didn't know that this program could be the reason their Windows Mail has issues that can't seem to be resolved any other way apart from ignore them and hope they don't get worse.

Similar Messages

  • Jtree Node with JComboBox don't work properly in Windows Vista!

    Hi people!
    i create a Jtree component and create a special node, that is a <strong>JPanel with a JLabel + JCombobox</strong>!
    Only the direct childs of root have this special node.
    A can put this work properly in Windows XP, like the picture:
    [XP Image|http://feupload.fe.up.pt/get/jcgd0rY5p9PoFPG]
    And in Windows Vista the same code appear like this:
    [Vista Image|http://feupload.fe.up.pt/get/Ylajl6hlCUFc0xe]
    <strong>Hence, in Vista something append behind the JLabel and show something wyerd!</strong>
    I can't understant this and if someone can help i appreciate!
    The TreeNodeRender class is :
    public class MetaDataTreeNodeRenderer implements TreeCellRenderer {
        private JLabel tip = new JLabel();
        private JPanel panel = new JPanel();   
        private JComboBox dataMartsRenderer = new JComboBox();
        private DefaultTreeCellRenderer nonEditableNodeRenderer = new DefaultTreeCellRenderer();
        private HashMap<String, String> valueSaver = null;
        public MetaDataTreeNodeRenderer(Component treeContainer, HashMap<String, String> valueSaver, String[] valuesComboBox) {
            this.valueSaver = valueSaver;
            int width = (int)treeContainer.getPreferredSize().getWidth();
            panel.setLayout(new GridBagLayout());
            java.awt.GridBagConstraints gridBagConstraints = new java.awt.GridBagConstraints();
            panel.setMaximumSize(new Dimension(width, 15));
            panel.setBackground(new Color(255, 255, 255, 0));
            dataMartsRenderer = new JComboBox(valuesComboBox);
            gridBagConstraints.gridx = 0;
            gridBagConstraints.gridy = 0;
            panel.add(tip, gridBagConstraints);
            gridBagConstraints.gridx = 1;
            panel.add(dataMartsRenderer, gridBagConstraints);
            tip.setLabelFor(dataMartsRenderer);       
        public JComboBox getEditableNodeRenderer() {
            return dataMartsRenderer;
        public String getTipText(){
            return this.tip.getText();
        public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected,
                boolean expanded, boolean leaf, int row, boolean hasFocus) {
            Component returnValue = null;
            DefaultMutableTreeNode currentNode = (DefaultMutableTreeNode)value;
            DefaultMutableTreeNode currentNodeFather = (DefaultMutableTreeNode)currentNode.getParent();
            if(currentNodeFather != null && currentNodeFather.isRoot()){//se o meu pai &eacute; a raiz, ent&atilde;o eu sou um datamart
                                                                        //se sou um datamart, ent&atilde;o sou edit&aacute;vel.
                String dataMart = (String)currentNode.getUserObject();
                String dataMartValue = this.valueSaver.get(dataMart);
                tip.setText(dataMart);
                if(dataMartValue != null) {
                    dataMartsRenderer.setSelectedItem(dataMartValue);
                returnValue = panel;
            }else{//sou um n&oacute; n&atilde;o edit&aacute;vel.
                 returnValue = nonEditableNodeRenderer.getTreeCellRendererComponent(tree,
                         value, selected, expanded, leaf, row, hasFocus);
            return returnValue;
    }The TreeNodeEditor class is :
    public class MetaDataTreeNodeEditor extends AbstractCellEditor implements TreeCellEditor {
        MetaDataTreeNodeRenderer renderer = null;
        JTree tree;
        //Where i save all JComboBox values ( name of label, selected item in combobox), for all combbox
        HashMap<String, String> valueSaver = null;
        public MetaDataTreeNodeEditor(JTree tree, Component treeContainer, HashMap<String, String> valueSaver, String[] valuesComboBox) {
            this.tree = tree;
            this.renderer = new MetaDataTreeNodeRenderer(treeContainer, valueSaver, valuesComboBox);
            this.valueSaver = valueSaver;
        public Object getCellEditorValue() {
            JComboBox comboBox = renderer.getEditableNodeRenderer();
            String dataMart = renderer.getTipText();
            this.valueSaver.put(dataMart, (String)comboBox.getSelectedItem() );
            return dataMart;
        @Override
        public boolean isCellEditable(EventObject event) {
            boolean returnValue = false;
            if (event instanceof MouseEvent) {
                MouseEvent mouseEvent = (MouseEvent) event;
                if (mouseEvent.getClickCount() > 1) {
                    TreePath path = tree.getPathForLocation(mouseEvent.getX(), mouseEvent.getY());
                    if (path != null) {
                        Object node = path.getLastPathComponent();
                        if ((node != null) && (node instanceof DefaultMutableTreeNode)) {
                            DefaultMutableTreeNode treeNode = (DefaultMutableTreeNode) node;
                            if ( treeNode.getParent() != null && ((DefaultMutableTreeNode) treeNode.getParent()).isRoot()) {
                                returnValue = true;
                            } else {
                                returnValue = false;
            return returnValue;
        public Component getTreeCellEditorComponent(final JTree tree, final Object value, boolean selected,
                boolean expanded, boolean leaf, int row) {
            Component editor = renderer.getTreeCellRendererComponent(tree, value, true, expanded, leaf,
                    row, true);
            ActionListener actionListener = new ActionListener(){
                public void actionPerformed(ActionEvent e) {
                    if (stopCellEditing()) {
                        fireEditingStopped();
            if (editor instanceof JPanel) {
                Object component = ((JPanel) editor).getComponent(1);
                JComboBox field = (JComboBox) component;
                field.addActionListener(actionListener);
            return editor;
        }

    Hi people!
    i create a Jtree component and create a special node, that is a <strong>JPanel with a JLabel + JCombobox</strong>!
    Only the direct childs of root have this special node.
    A can put this work properly in Windows XP, like the picture:
    [XP Image|http://feupload.fe.up.pt/get/jcgd0rY5p9PoFPG]
    And in Windows Vista the same code appear like this:
    [Vista Image|http://feupload.fe.up.pt/get/Ylajl6hlCUFc0xe]
    <strong>Hence, in Vista something append behind the JLabel and show something wyerd!</strong>
    I can't understant this and if someone can help i appreciate!
    The TreeNodeRender class is :
    public class MetaDataTreeNodeRenderer implements TreeCellRenderer {
        private JLabel tip = new JLabel();
        private JPanel panel = new JPanel();   
        private JComboBox dataMartsRenderer = new JComboBox();
        private DefaultTreeCellRenderer nonEditableNodeRenderer = new DefaultTreeCellRenderer();
        private HashMap<String, String> valueSaver = null;
        public MetaDataTreeNodeRenderer(Component treeContainer, HashMap<String, String> valueSaver, String[] valuesComboBox) {
            this.valueSaver = valueSaver;
            int width = (int)treeContainer.getPreferredSize().getWidth();
            panel.setLayout(new GridBagLayout());
            java.awt.GridBagConstraints gridBagConstraints = new java.awt.GridBagConstraints();
            panel.setMaximumSize(new Dimension(width, 15));
            panel.setBackground(new Color(255, 255, 255, 0));
            dataMartsRenderer = new JComboBox(valuesComboBox);
            gridBagConstraints.gridx = 0;
            gridBagConstraints.gridy = 0;
            panel.add(tip, gridBagConstraints);
            gridBagConstraints.gridx = 1;
            panel.add(dataMartsRenderer, gridBagConstraints);
            tip.setLabelFor(dataMartsRenderer);       
        public JComboBox getEditableNodeRenderer() {
            return dataMartsRenderer;
        public String getTipText(){
            return this.tip.getText();
        public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected,
                boolean expanded, boolean leaf, int row, boolean hasFocus) {
            Component returnValue = null;
            DefaultMutableTreeNode currentNode = (DefaultMutableTreeNode)value;
            DefaultMutableTreeNode currentNodeFather = (DefaultMutableTreeNode)currentNode.getParent();
            if(currentNodeFather != null && currentNodeFather.isRoot()){//se o meu pai &eacute; a raiz, ent&atilde;o eu sou um datamart
                                                                        //se sou um datamart, ent&atilde;o sou edit&aacute;vel.
                String dataMart = (String)currentNode.getUserObject();
                String dataMartValue = this.valueSaver.get(dataMart);
                tip.setText(dataMart);
                if(dataMartValue != null) {
                    dataMartsRenderer.setSelectedItem(dataMartValue);
                returnValue = panel;
            }else{//sou um n&oacute; n&atilde;o edit&aacute;vel.
                 returnValue = nonEditableNodeRenderer.getTreeCellRendererComponent(tree,
                         value, selected, expanded, leaf, row, hasFocus);
            return returnValue;
    }The TreeNodeEditor class is :
    public class MetaDataTreeNodeEditor extends AbstractCellEditor implements TreeCellEditor {
        MetaDataTreeNodeRenderer renderer = null;
        JTree tree;
        //Where i save all JComboBox values ( name of label, selected item in combobox), for all combbox
        HashMap<String, String> valueSaver = null;
        public MetaDataTreeNodeEditor(JTree tree, Component treeContainer, HashMap<String, String> valueSaver, String[] valuesComboBox) {
            this.tree = tree;
            this.renderer = new MetaDataTreeNodeRenderer(treeContainer, valueSaver, valuesComboBox);
            this.valueSaver = valueSaver;
        public Object getCellEditorValue() {
            JComboBox comboBox = renderer.getEditableNodeRenderer();
            String dataMart = renderer.getTipText();
            this.valueSaver.put(dataMart, (String)comboBox.getSelectedItem() );
            return dataMart;
        @Override
        public boolean isCellEditable(EventObject event) {
            boolean returnValue = false;
            if (event instanceof MouseEvent) {
                MouseEvent mouseEvent = (MouseEvent) event;
                if (mouseEvent.getClickCount() > 1) {
                    TreePath path = tree.getPathForLocation(mouseEvent.getX(), mouseEvent.getY());
                    if (path != null) {
                        Object node = path.getLastPathComponent();
                        if ((node != null) && (node instanceof DefaultMutableTreeNode)) {
                            DefaultMutableTreeNode treeNode = (DefaultMutableTreeNode) node;
                            if ( treeNode.getParent() != null && ((DefaultMutableTreeNode) treeNode.getParent()).isRoot()) {
                                returnValue = true;
                            } else {
                                returnValue = false;
            return returnValue;
        public Component getTreeCellEditorComponent(final JTree tree, final Object value, boolean selected,
                boolean expanded, boolean leaf, int row) {
            Component editor = renderer.getTreeCellRendererComponent(tree, value, true, expanded, leaf,
                    row, true);
            ActionListener actionListener = new ActionListener(){
                public void actionPerformed(ActionEvent e) {
                    if (stopCellEditing()) {
                        fireEditingStopped();
            if (editor instanceof JPanel) {
                Object component = ((JPanel) editor).getComponent(1);
                JComboBox field = (JComboBox) component;
                field.addActionListener(actionListener);
            return editor;
        }

  • Sound won't work properly under Windows XP

    Under Bootcamp (Windows XP SP 3, fresh installed) the sound from the right loudspeaker is a LOT louder than the sound from the left one. Under Mac OS everythings seems to be normal.
    What could that be? Especially when I play games under windows it sounds awful.
    Daniel

    Hello Pumpkinbb. Thank you for posting on the HP Forums. I understand your headphones are not working properly, on your computer. To assist you properly, I require the following information:
    1. The computer's model number. If you require assistance locating this information, please reference this website: http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c00033108
    2. The computer's operating system. I know you stated the computer has Windows 8, but I would like to double-check. If you require assistance locating this information, please reference this website: http://windows.microsoft.com/en-CA/windows/which-operating-system
    3. Have you installed any new hardware on this computer, before the issue appeared?
    4. Have you installed any new software or drivers on this computer, before the issue appeared?
    In the meantime, please apply the troubleshooting in this HP document, then provide the results: http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c01884922
    Note that the troubleshooting is intended for Windows 7, but is effective on Windows 8. Please respond as soon as possible. I look forward to your response.
    Mario
    I worked on behalf of HP.

  • Critical - Transactions don't work properly under WL 6.1?

              Hi all,
              we used weblogic 6.0 in the past and it worked fine with trsanactions.
              Which means for example having a statful session in a container managed transaction
              calling several other beans (mainly entity) using different dataasources. But
              now under weblogic 6.1 "sometimes" ( this means it does not occur always at the
              same test with the same enviroment) a transaction error occurs:
              java.sql.SQLException: XA error: XAER_RMERR : A resource manager error has occured
              in the transaction branch start() failed on resource 'weblogic.jdbc.jta.DataSource'
              Internal error during start for XAResource 'wirecardDataPool'
              -at com.wirecard.io.db.dao.TransactionDAOImpl.prepareStatement(TransactionDAOImpl.java:808)
              -at com.wirecard.io.db.dao.TransactionDAOImpl.loadTranStatusWithoutUserTran(TransactionDAOImpl.java:1045)
              -at com.wirecard.payment.creditcard.ejb.CreditCardDataBean.loadReferredTransactionStatus(CreditCardDataBean.java:3668)
              -at com.wirecard.payment.creditcard.ejb.CreditCardDataBean.checkReferredTranForQuery(CreditCardDataBean.java:2348)
              -at com.wirecard.payment.creditcard.ejb.CreditCardDataBean.validateQueryRequest(CreditCardDataBean.java:1763)
              -at com.wirecard.payment.creditcard.ejb.CreditCardDataBean_mannqy_EOImpl.validateQueryRequest(CreditCardDataBean_mannqy_EOImpl.java:1806)
              -at com.wirecard.payment.creditcard.ejb.CreditCardDataBean_mannqy_EOImpl_WLSkel.invoke(Unknown
              Source)
              -at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:296)
              -at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:265)
              -at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:166)
              -at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:92)
              -at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:112)
              -at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:134)
              -at weblogic.rmi.internal.ProxyStub.invoke(ProxyStub.java:35)
              -at $Proxy125.validateQueryRequest(Unknown Source)
              -at java.lang.reflect.Method.invoke(Native Method)
              -at com.wirecard.payment.creditcard.CreditCardReceiver.validateRequest(CreditCardReceiver.java:2275)
              -at com.wirecard.payment.creditcard.CreditCardReceiver.processQuery(CreditCardReceiver.java:665)
              -at com.wirecard.framework.command.QueryCommand.execute(QueryCommand.java:35)
              -at com.wirecard.framework.command.ConcreteCommand.execute(ConcreteCommand.java:76)
              -at com.wirecard.framework.command.CommandInvoker.processTransaction(CommandInvoker.java:45)
              -at com.wirecard.payment.creditcard.CreditCard.processTransaction(CreditCard.java:167)
              -at com.wirecard.payment.creditcard.TestCreditCard.testQueryOfPreAuthorization(TestCreditCard.java:1723)
              -at java.lang.reflect.Method.invoke(Native Method)
              -at org.apache.commons.cactus.AbstractTestCase.runServerTest(AbstractTestCase.java:328)
              -at org.apache.commons.cactus.AbstractTestCase.runBareServerTest(AbstractTestCase.java:299)
              -at org.apache.commons.cactus.server.ServletTestCaller.callTestMethod(ServletTestCaller.java:148)
              -at org.apache.commons.cactus.server.ServletTestCaller.doTest(ServletTestCaller.java:200)
              -at org.apache.commons.cactus.server.ServletTestRedirector.doPost(ServletTestRedirector.java:149)
              -at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
              -at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              -at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
              -at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
              -at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2456)
              -at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2039)
              -at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              -at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              Has anyone a clue how to solve this problem?
              cu,
              Guenter
              

              Hi all,
              we used weblogic 6.0 in the past and it worked fine with trsanactions.
              Which means for example having a statful session in a container managed transaction
              calling several other beans (mainly entity) using different dataasources. But
              now under weblogic 6.1 "sometimes" ( this means it does not occur always at the
              same test with the same enviroment) a transaction error occurs:
              java.sql.SQLException: XA error: XAER_RMERR : A resource manager error has occured
              in the transaction branch start() failed on resource 'weblogic.jdbc.jta.DataSource'
              Internal error during start for XAResource 'wirecardDataPool'
              -at com.wirecard.io.db.dao.TransactionDAOImpl.prepareStatement(TransactionDAOImpl.java:808)
              -at com.wirecard.io.db.dao.TransactionDAOImpl.loadTranStatusWithoutUserTran(TransactionDAOImpl.java:1045)
              -at com.wirecard.payment.creditcard.ejb.CreditCardDataBean.loadReferredTransactionStatus(CreditCardDataBean.java:3668)
              -at com.wirecard.payment.creditcard.ejb.CreditCardDataBean.checkReferredTranForQuery(CreditCardDataBean.java:2348)
              -at com.wirecard.payment.creditcard.ejb.CreditCardDataBean.validateQueryRequest(CreditCardDataBean.java:1763)
              -at com.wirecard.payment.creditcard.ejb.CreditCardDataBean_mannqy_EOImpl.validateQueryRequest(CreditCardDataBean_mannqy_EOImpl.java:1806)
              -at com.wirecard.payment.creditcard.ejb.CreditCardDataBean_mannqy_EOImpl_WLSkel.invoke(Unknown
              Source)
              -at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:296)
              -at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:265)
              -at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:166)
              -at weblogic.rmi.internal.ServerRequest.sendOneWayRaw(ServerRequest.java:92)
              -at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:112)
              -at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:134)
              -at weblogic.rmi.internal.ProxyStub.invoke(ProxyStub.java:35)
              -at $Proxy125.validateQueryRequest(Unknown Source)
              -at java.lang.reflect.Method.invoke(Native Method)
              -at com.wirecard.payment.creditcard.CreditCardReceiver.validateRequest(CreditCardReceiver.java:2275)
              -at com.wirecard.payment.creditcard.CreditCardReceiver.processQuery(CreditCardReceiver.java:665)
              -at com.wirecard.framework.command.QueryCommand.execute(QueryCommand.java:35)
              -at com.wirecard.framework.command.ConcreteCommand.execute(ConcreteCommand.java:76)
              -at com.wirecard.framework.command.CommandInvoker.processTransaction(CommandInvoker.java:45)
              -at com.wirecard.payment.creditcard.CreditCard.processTransaction(CreditCard.java:167)
              -at com.wirecard.payment.creditcard.TestCreditCard.testQueryOfPreAuthorization(TestCreditCard.java:1723)
              -at java.lang.reflect.Method.invoke(Native Method)
              -at org.apache.commons.cactus.AbstractTestCase.runServerTest(AbstractTestCase.java:328)
              -at org.apache.commons.cactus.AbstractTestCase.runBareServerTest(AbstractTestCase.java:299)
              -at org.apache.commons.cactus.server.ServletTestCaller.callTestMethod(ServletTestCaller.java:148)
              -at org.apache.commons.cactus.server.ServletTestCaller.doTest(ServletTestCaller.java:200)
              -at org.apache.commons.cactus.server.ServletTestRedirector.doPost(ServletTestRedirector.java:149)
              -at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
              -at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              -at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
              -at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
              -at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2456)
              -at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2039)
              -at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              -at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              Has anyone a clue how to solve this problem?
              cu,
              Guenter
              

  • Bootcamp 3.2: Microsoft Virtual WiFi MiniPort Adapter shows "device is not working properly...Code 31"

    Using Windows 7 Enterprise 64-bit, Microsoft Virtual WiFi Miniport Adapter shows the "device is not working properly because Windows cannot load the drivers required for this device. (Code 31).".The device is the Apple iMac10,1 All-in-one computer. Right clicking browse files (for the device) shows the Bootcamp (C:), DVD (D:); and my external hard drives can be selected.
    Internet and WiFi connections all working ok. Am also running MacDrive 8 to access the Mac drives when in the Windows partition, again without any seeming issues.
    Updating the driver simply generates another Code 31 error.
    Appreciate this seems to be a known problem - is the a solution a novice use might be able to follow or should I simply ignore the error message?
    Driver Date us 21/06/2006 and Driver Version is 6.1.7600.16385.

    Hi  ,
    Thank you for visiting the HP Support Forums and Welcome. It is a great site for information and questions. I have looked into your issue about your HP ENVY 4-1204tx Ultrabook and issues with WiFi adapter is not working properly. Error codes in Device Manager in Windows  8.1 could be fixed by deleting any extra drivers. So I would uninstall all that is listed in the Network drivers in the Device Manager, restart the Notebook. Here is a list of Device Manager options, this might help.
    Here is a link to the HP Support Assistant if you need it. Just download and run the application and it will help with the software and drivers on your system that need updating or reinstalling. Hope this helps. Thanks.

  • Google maps don't work properly with ADF

    Hi!
    I have tried to integrate Google maps with ADF http://blogs.oracle.com/middleware/2010/06/integrating_google_maps_with_adf.html. This tutorial works good, but then I insert the same code in real ADF application Google maps don’t work properly, there are problems with zoom buttons, map doesn’t display right region but shows another one (does it with offset) etc.
    Can be this issues connected with ADF Security? Or there are some other things in my project which doesn’t allow JavaScript to work correctly?

    andrejs,
    I just tried the tutorial (works fine) and the tutorial with ADF security (works fine). It seems to be something more specific to your application than anything else.
    John

  • SP A60: Upon resume from standby, why devices don't work?

    Hi there,
    A question about my Toshiba Satellite Pro A60 (P2.8GHz, 40GB, Win XP Pro, as factory-delivered and extended with Belkin 54G PC-card wireless network adapter).
    When the laptop wakes up from standby, several devices don't work anymore, e.g. the wireless network-card. I haven't found anything to (un)check for Wakeup-On-Lan, resume, power management or anything similar.
    After a full reboot, all works fine again.
    What could I do to let all devices work the same after waking up from stand-by?
    Thanks in advance for your reply.
    Regards,
    Herman Zandt

    Hi Horwath
    Indeed not easy to explain. It doesn't make any difference if I use an AC power supply or battery, the same problem happens with both power sources.
    I re-checked the whole issue: upon pressing the on-switch on the SP A60 whilst it is blinking yellow (ie. A60 is in standby mode), it reboots perfectly without any errors. All devices work, ie. connectivity wireless card with base station ("excellent"), USB-ports, modem is recognised, touchpad works, DVD/CD-RW reads and soundcard works. (In fact, subject of this email is not correct anymore...)
    To be precise, what is NOT working is the data transfer, neither in my internal zone (LAN), nor outside (the Internet).
    Summarised: upon resuming from standby, the SP-A60 operates as being purely local without recognising anything outside the machine, despite the wireless network card being properly installed and excellent connectivity with the base station shown.
    As said, after full reboot all works fine again. No settings or checks have been found related to this. I'm running the latest BIOS.
    Any ideas? A hardware- or software-related issue?
    Thanks a zillion,
    Herman

  • Intel display driver has stopped working properly, distributed by Lenovo

    Toshiba Satellite L355-S7915 with Windows Vista Home Basic SP2 32-bit:  Keep getting "Intel display driver has stopped working properly and has recovered" when turn on computer or log on with new user.  Driver version is 7.15.10.1829.  This is more of an annoyance, which I can enter through and continue, but I would like to get the messages to stop.  Any ideas?  Thanks.

    Me too, only I am using a desktop through e machines with an Intel 82945G Express Chiplet Family.  And my pc just crashes and it is getting very annoying! for the longest time Vista couldn't provide a solution and today is sent my to Lenovo.  I may be out of touch with the tech world but to my understanding I don't have anything "Lenovo" unless thats the new fancy name for Intel.  But I can't seem to find a solution for this problem and am sick of it!  Any advice? thanks and happy holidays!

  • Desktop SMS and Windows Mail don't work properly together

    Hi
    thought I would post there here as been having some issues with my Windows Mail but my desktop computer doesn't suffer same issues and on a Vista forum where I posted my problem a couple of very helpful told me who to try solving the issues.
    One of them suddenly realised I'd said my laptop was a Toshiba and apparently the Desktop SMS and Windows Mail just don't work properly together so the person suggested unless I use it to uninstall it apparently amongst the technically trained its known that these two programs don't like each other and would explain why my desktop doesn't have the issue but laptop does.
    After resetting the Windows Mail (tutorial on a vista site http://www.vistax64.com/tutorials/) Touch wood don't be put off by vistax64 as site does both 32 and 64 and followed Brink's excellent resetting Windows Mail (didn't restore any mail) and then uninstalled Desktop SMS and touch wood no more mail issues as has been giving me problems virtually daily with marking draft emails as read/sent.
    So had to click on forward then delete those bits and finish email to send it and touch wood since doing these two things as soon as send an email to draft or outbox get the number of emails in the brackets whereas before this wouldn't happen unless I closed the program then reopened it.
    Hoping these solutions have fixed my problem and wanted to share it with anybody else who wants to read this thread and would recommend the Vista 64 site as they're all really helpful over there and speak in non technical terms for those of us not technically trained.
    Debbie

    I have marked this as answered as it was more a post to help others who may have experienced the same problem I did and didn't get a reply or just didn't know that this program could be the reason their Windows Mail has issues that can't seem to be resolved any other way apart from ignore them and hope they don't get worse.

  • Audigy 2 Platinum Ex No longer working properly under vista

    ;Audigy 2 Platinum Ex No longer working properly under vistat I have just upgraded to vista and I find my sound card to be no longer functional
    I have upgraded all the fri'vers I can find
    SBAX_PCDRVBETA_US_2_8_000.exe
    creative_sbxfi_250002_vista.exe
    and a couple of others that SecurityCentre found
    And when I open "Surround Mixer" I get "The selected soundcard is not supprted by the application," whatever the hell that means.
    Ihave spent all day researching installing rebooting, and cannot get microphone, and all the other functions "what you hear" etc to work.
    What must I do to get this perfectly good sound card to work please. Vista has been out for some time now, and I would export supportingdrivers yo have been redily visible.
    Thank you in anticipation.

    ? I guess Creative doesn't care about living up to the promise that their product is upgradeable as new technologies emerge such as VISTA. They were give plenty of warning, that it was coming out, and it has been out for some time. I guess the $700AUS I spent is down the tubes, because the lazy people at creative cannot be bothered to bring it into compatibility - AS PROMISED with "peace of mind" they said. There is no way that I will acti'vely tell people how good creative is any more. In fact I will be acti've in just the opposite.
    Get of your backsides and support AS PROMISED, we deserve it, instead of giving us second rate partial compatibilities. I have wasted the best part of a week trying to get it all sorted, where do I send the bill for my time? Hvae I got sour grapes? No, I just expect decent support as promised.
    I issue the challenge - ?Provide decent support and I will retract. Fair is fair. I PROMISE.

  • Windows reports that the "USB-IF xHCI USB Host Controller" device is not working properly.

    I have been receiving the following error and instructions to fix it for a long time now, prior to updating to Windows 8.1:
    A device is not working properly
    Windows reports that the "USB-IF xHCI USB Host Controller" device is not working properly.
     Recommended solution to the problemUse Windows Update to check whether new device drivers are available. Proceed as follows:
    Open Device Manager
    Search in the device manager for the device whose driver you would like to update and double-click on the device name. You may first have to enable the "Show hidden devices" entry in the "View" menu.
    Switch to the Driver tab, click Update driver and follow the instructions
    When I follow the instructions and try to update the driver, I am told "The best driver software for your device is already installed."
    How do I update the driver to stop receiving the error?  
    This question was solved.
    View Solution.

    I have solved the initial problem.    
    I found the solution on the Forum at http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03926756&tmp_task=solveCategory&cc=us&dlc=en&la...

  • When I open Gmail my calendar will not open. It tries to connect but cannot redirect properly. It works fine under Windows explorer.

    When I'm logged into Gmail and I try to open up my Gmail Calendar I get a error in the window saying "The page isn't redirecting properly". It works fine under Windows Explorer. I have Windows 7 and the latest Firefox application, downloaded today.

    hello sphowe, as afirst step please try to [[Clear the cache - Delete temporary Internet files to fix common website issues|clear the cache]] & [[Delete cookies to remove the information websites have stored on your computer|cookies from google.com]] and reload the page.

  • Do non-US english keyboards work properly under ios7 on an ipad4?

    Does anyone know if non-american english bluetooth keyboards work properly under ios7 on the iPad 4?
    I figure that the results will probably be similar to an iPhone 5s running iOS 7 which is one of a couple reasons why I still have ios6 on my iPad (in addition to iOS 6 just looking far better.)
    I have iOS 7.1.2 on my iPhone 5s and also tried typing with it in a few other 7.0.x iOS installs, but for the non-apple apps the keyboard keys I press simply put the key for what would be there on the US keyboard except for keys with no US keyboard counterpart. The keys with no US keyboard counterpart (such as the _ (underscore) key) do absolutely nothing at all.
    Does anyone know if somehow this is specific to the iPhone 5s or if this is just inherent to ios7?
    As I said, the apple apps seem to work fine. I checked messages, notes, reminders, and spotlight those recognize my keyboard.
    Evernote also seems to recognize it.
    Facebook, twitter, tumblr, and google+ do not recognize the keyboard (and this is an official apple bluetooth keyboard that has worked perfectly fine with my iPhone 4, 4s, and still works with my iPad 4 (all running ios5 or ios6)).
    Does anyone know of any setting that was introduced in ios7 that might fix this or is this just apple screwing up the bluetooth keyboard api and not letting other developers know how to get correct keystrokes from a bluetooth keyboard?
    I'd love to be able to FaceTime on my iPad again, but if I'm going to have to put up with an os that I find visually unappealing, I'd at least hope that it could get the right keystrokes to apps (or at least make obvious how to do so).

    Hi konekotron,
    See this manual about using the Apple Wireless Keyboard with your iPad -
    iPad User Guide
    http://manuals.info.apple.com/MANUALS/1000/MA1595/en_US/ipad_user_guide.pdf
    See page 25 and the section on using International Keyboards on page 125.
    A similar guide for the iPhone -
    iPhone User Guide
    manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf
    See page 28.
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • TS3297 What do I do if music files purchased/downloaded for the iTunes store don't work properly?

    What do I do if music files purchased/downloaded for the iTunes store don't work properly?

    Buddhabeat...clicking on the "Report a Problem" button next to the song(s) in question, should open a drop-down list menu, that allows you to select the specific issue/area of concern that you are experiecing (or you can select a generic "My problem is not on the list" (or something to that effect). Underneath this drop-down menu box, there should be another message box where you can describe  the issue/problem your having. Below this message box will be a "Submit" button...clicking on that will send your message to the Apple iTunes Store Customer Support Centre (you will see a confirmation message that your message has been sent), as well as receive an email notification from the Support Centre confirming your message has been received, a case number, and that you will receive an email response pertaining to the issue/problem you're having, from the Support Centre asap (usually within 24 hours). That's how it worked for me, anyhow.

  • App store don't work properly

    App store on iphone don't work properly, i cann't install any app, cause the install button is lagging or there is no install button at all, and i can't see any pictures, only the first. on iPad it's work good...iPhone 2)) And sorry for my English

    =_=
    1. i tap for example *Free*
    2. then i need to tap install, but there is no button at all or there is just half of the button....
    3. and images... i can't slide

Maybe you are looking for

  • Replacing a Superdrive

    Hello, everyone. I was just wondering where I can get step-by-step instructions for installing my shiny new Pioneer DVR-115DBK dvd burner inside my 1.6 ghz Powermac G5 tower. I have a feeling it is really easy, but don't know where to start. Doing a

  • How to Count total number of Words in PDF?

    I am used Adobe Acrobat javascript inbuilt function getPageNumWords(<pagenumber>) it return the number of words present in specified page, but while am copy and paste text content from PDF file to MS Word, Words count given by MS Word is little bit d

  • Running total for duplicate rows

    Hi, I am trying to write an sql which shows the running total for records which has duplicate. Please share any idea to get this. sample rows: col1 col2 col3 1      A    2 1      A    2 1      A    2 1      B    3 1      B    3 1      C    5 1      D

  • Creating Floor Plan Manager Application.

    Hello, I am creating a Webdynpro ABAP Application using standard FPM interface and component FPM_GAF_COMPONENT. First I create the Application Configuration ,But when I try to create the Component Configuration for the same I get the following error:

  • Training & Support Link not working

    Hi i have a 30-day trial version of Siebel CRM On Demand. When i click on the Trial & Support link on my version it simply returns a blank page??? Can someone tell me how this can be fixed? Thanks, Saket