ThinkPad Compact Bluetooth keyboard: how to enable horizontal scrolling?

Hi all

any advice on "how to enable horizontal scrolling" on my Bluetooth keyboard external ThinkPad?

It is available with my current ThinkPad 450 and was with my a previous T420.

I bought the keyboard because it has the same layout and the trackpoint, but I had no idea that the behavior would be different.

Thank you very much for your help.

Goodbye Kenny

Hello

I just noticed on the driver it seems that horizontal scrolling has been fixed.

1.5.1.0 2016-03-11
Fixed, HScroll.

Here is the driver for download.

Concerning

Tags: Lenovo Products

Similar Questions

  • ThinkPad Compact USB Keyboard (B 0, 47190) - cleaning tips

    Hello

    I am a keyboard ThinkPad Compact USB Keyboard (model 0 B 47190 KU-1255). It's great to type on this keyboard.

    I would like to know what is the best way to clean the keyboard from time to time? Are there special cleaning kits?

    Please notify.

    Thanks in advance,

    Ray S

    Good day and welcome to the community.

    Please take a look at: https://support.lenovo.com/us/en/documents/migr-52190 for the Lenovo instructions for cleaning.

    Hope this helps,

    Kind regards.

  • How to set horizontal scrolling to horizontal field Manager when fields are added using a loop for?

    The following code snippet contains a horizontal field Manager to which are added five buttons.

    1. I can't the value of horizontal scrolling to horizontal management Manager because of who I am not able to access the keys 4 and 5.

    2. usually, we put horizontal scrolling in the following way:

    container = new HorizontalFieldManager(USE_ALL_WIDTH|HORIZONTAL_SCROLL|HORIZONTAL_SCROLLBAR);
    

    3. so I also tried setting of horizontal scrolling in the following way

       container = new HorizontalFieldManager(Manager.HORIZONTAL_SCROLL|Manager.HORIZONTAL_SCROLLBAR)
                {
    
                    protected void sublayout(int maxWidth, int maxHeight) {
    
                        Field field = null;
                        int x = 0;
                        int y = 0;
                        int maxFieldHeight = 0;
                        int maxFieldWidth = 0;
                        for (int i = 0; i < getFieldCount(); i++)
                        {
                            field = getField(i);
                            layoutChild(field, maxWidth, maxHeight);
                            setPositionChild(field, x/*width-field.getWidth()*/,y);
    
                            x+=field.getWidth();
    
                            maxFieldWidth = maxFieldWidth + field.getWidth();
                            System.out.println("field width"+field.getWidth());
                            System.out.println(" max field width"+maxFieldWidth);
    
                            if(i==0)
                            {
                                maxFieldHeight = field.getHeight(); // height set of the first button since all components have the same height
                            }
                        }
                        System.out.println("final max field width"+maxFieldWidth);
    
                        setExtent(maxFieldWidth, maxFieldHeight);
    
                    }
                };
    

    but it's not working.

    4 I found this property: (position) horizontalFieldManager.setHorizontalScroll; that contains the parameterioo where the post is supposed to be the new horizontal scroll position. I tried passing the coordinate x of horizontal field Manager, but it does not work. I should pass as a parameter position?

    HorizontalFieldManager container = new HorizontalFieldManager()
    {
        protected void sublayout(int maxWidth, int maxHeight)
        {
            Field field = null;
            int x = 0;
            int y = 0;
            int maxFieldHeight = 0;
            for (int i = 0; i < getFieldCount(); i++)
            {
                field = getField(i);
                layoutChild(field, maxWidth, maxHeight);
                setPositionChild(field, x,y);
                x+=field.getWidth();
                if(i==0)
                {
                    maxFieldHeight = field.getHeight(); // height set of the first button since all components have the same height
                }
            }
    
            setExtent(Display.getWidth(), maxFieldHeight);
    
        }
    };
    
    ButtonField button1 = new ButtonField("Button1");
    ButtonField button2 = new ButtonField("Button2");
    ButtonField button3 = new ButtonField("Button3");
    ButtonField button4 = new ButtonField("Button4");
    ButtonField button5 = new ButtonField("Button5");
    
    container.add(button1);
    container.add(button2);
    container.add(button3);
    container.add(button4);
    container.add(button5);
    
    add(container);
    

    Need your valuable comments and suggestions. Please help me.

    I think that there is a bug in the sublayout (your HorizontalFieldManager 0 mode.  Given that the code did what I think WHAT HFM will do anyway, I recommend that you try to do this with a standard HFM, using this style:

    Manager.HORIZONTAL_SCROLL | Manager.HORIZONTAL_SCROLLBAR

    Let us know how you go.

    When I have more time I'll explain the bug, but if you want to investigate something, be aware that the maximum size that you can use in setExtent are the values that are passed to sublayout.  Compare the width as you try to define in setExtent whose width is increased.

  • Is there a way to enable horizontal scrolling is the Finder Windows?

    I just upgraded to Mac OS Sierra and noticed that the windows in the Finder now scroll vertically (up and down) with scroll on the right side bar and I can't change it to be able to scroll horizontally (left and right) with the bar scroll on the bottom. I was always able to scroll horizontally according to icon, if the option had been abandoned?

    Drag the upper or lower window.

     > System Preferences > Trackpad

     > System Preferences > General

  • Horizontal scrolling grid

    Hello world

    I have a grid, but the last two columns are displayed on the screen. Anyone know how I could enable horizontal scrolling.  I am a complete Newbie so apologies if my code is doubtful;

    Import net.rim.device.api.ui.container.GridFieldManager;
    Net.rim.device.api.ui import. *;
    Import net.rim.device.api.ui.component.LabelField;
    Import net.rim.device.api.ui.component.SeparatorField;
    Import net.rim.device.api.ui.component.ObjectChoiceField;

    Grid/public class extends UiApplication
    {
    Public Shared Sub main (String [] args)
    {
    Grid PAP = new Grid();
    theApp.enterEventDispatcher ();
    }

    Grid()
    {
    pushScreen (new GridScreen());
    }
    }

    class GridScreen extends TimetableMainScreen {}

    public GridScreen()
    {
    setTitle ("your week, created by the calendar");

    GridFieldManager grid = new GridFieldManager (10,6,1);

    grid.setHorizontalScroll (RIGHTMOST);

    Grid.Insert (new LabelField ("TimeTable"), 0, 0);
    Grid.Insert (new LabelField("9"), 1, 0);
    Grid.Insert (new LabelField("10"), 2, 0);
    Grid.Insert (new LabelField("11"), 3, 0);
    Grid.Insert (new LabelField("12"), 4, 0);
    Grid.Insert (new LabelField("13"), 5, 0);
    Grid.Insert (new LabelField("14"), 6, 0);
    Grid.Insert (new LabelField("15"), 0, 7);
    Grid.Insert (new LabelField("16"), 8, 0);
    Grid.Insert (new LabelField("17"), 9, 0);
    Grid.Insert (new LabelField ("Monday"), 0.1);
    Grid.Insert (new LabelField ("Tuesday"), 0, 2);
    Grid.Insert (new LabelField ("Wednesday"), 0, 3);
    Grid.Insert (new LabelField ("Thursday"), 0, 4);
    Grid.Insert (new LabelField ("Friday"), 0, 5);

    String choice [] = {'1', '2', '3', '4', '5', 'Free', 'Révision'};
    ObjectChoiceField objChoice = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice1 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice2 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice3 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice4 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice5 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice6 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice7 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice8 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice9 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice10 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice11 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice12 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice13 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice14 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice15 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice16 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice17 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice18 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice19 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice20 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice21 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice22 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice23 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice24 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice25 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice26 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice27 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice28 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice29 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice30 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice31 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice32 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice33 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice34 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice35 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice36 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice37 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice38 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice39 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice40 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice41 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice42 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice43 = new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice44 = new ObjectChoiceField("",choices);

    Grid.Add (objChoice);
    Grid.Add (objChoice1);
    Grid.Add (objChoice2);
    Grid.Add (objChoice3);
    Grid.Add (objChoice4);
    Grid.Add (objChoice5);
    Grid.Add (objChoice6);
    Grid.Add (objChoice7);
    Grid.Add (objChoice8);
    Grid.Add (objChoice9);
    Grid.Add (objChoice10);
    Grid.Add (objChoice11);
    Grid.Add (objChoice12);
    Grid.Add (objChoice13);
    Grid.Add (objChoice14);
    Grid.Add (objChoice15);
    Grid.Add (objChoice16);
    Grid.Add (objChoice17);
    Grid.Add (objChoice18);
    Grid.Add (objChoice19);
    Grid.Add (objChoice20);
    Grid.Add (objChoice21);
    Grid.Add (objChoice22);
    Grid.Add (objChoice23);
    Grid.Add (objChoice24);
    Grid.Add (objChoice25);
    Grid.Add (objChoice26);
    Grid.Add (objChoice27);
    Grid.Add (objChoice28);
    Grid.Add (objChoice29);
    Grid.Add (objChoice30);
    Grid.Add (objChoice31);
    Grid.Add (objChoice32);
    Grid.Add (objChoice33);
    Grid.Add (objChoice34);
    Grid.Add (objChoice35);
    Grid.Add (objChoice36);
    Grid.Add (objChoice37);
    Grid.Add (objChoice38);
    Grid.Add (objChoice39);
    Grid.Add (objChoice40);
    Grid.Add (objChoice41);
    Grid.Add (objChoice42);
    Grid.Add (objChoice43);
    Grid.Add (objChoice44);

    grid.getBorder (1);
    grid.setBorder (HIGHLIGHT_SELECT, getBorder (1));

    grid.setColumnPadding (7);
    grid.setRowPadding (15);
    Add (new SeparatorField());

    Add (Grid);
    Add (new SeparatorField());

    }

    }

    See you soon!

    Hi small changes it works refer. Plese find my seals to a BOLD font

    import net.rim.device.api.system.Display;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Manager;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.component.ObjectChoiceField;
    import net.rim.device.api.ui.component.SeparatorField;
    import net.rim.device.api.ui.container.GridFieldManager;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    
    class GridScreen extends TimetableMainScreen{
    
        public GridScreen()
        {
        setTitle("Your Week, created by TimeTable");
    
        VerticalFieldManager vmagr=new VerticalFieldManager(HORIZONTAL_SCROLL|VERTICAL_SCROLL){ protected void sublayout(int maxWidth, int maxHeight) { super.sublayout(Display.getWidth(),Display.getHeight()); setExtent(Display.getWidth(),Display.getHeight()); } };
        GridFieldManager grid = new GridFieldManager(10,6,Manager.HORIZONTAL_SCROLL);
    
        grid.insert(new LabelField("TimeTable",Field.FOCUSABLE), 0, 0);
        grid.insert(new LabelField("9"), 1, 0);
        grid.insert(new LabelField("10"), 2, 0);
        grid.insert(new LabelField("11"), 3, 0);
        grid.insert(new LabelField("12"), 4, 0);
        grid.insert(new LabelField("13"), 5, 0);
        grid.insert(new LabelField("14"), 6, 0);
        grid.insert(new LabelField("15"), 7, 0);
        grid.insert(new LabelField("16"), 8, 0);
        grid.insert(new LabelField("17"), 9, 0);
        grid.insert(new LabelField("Monday",Field.FOCUSABLE|FIELD_RIGHT), 0,1);
        grid.insert(new LabelField("Tuesday",Field.FOCUSABLE|FIELD_RIGHT), 0, 2);
        grid.insert(new LabelField("Wednesday",Field.FOCUSABLE|FIELD_RIGHT), 0, 3);
        grid.insert(new LabelField("Thursday",Field.FOCUSABLE|FIELD_RIGHT), 0, 4);
        grid.insert(new LabelField("Friday          ",Field.FOCUSABLE|FIELD_RIGHT), 0, 5);
    
        String[] choices= {"1","2","3","4","5","Free","Revision"};
        ObjectChoiceField objChoice =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice1 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice2 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice3 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice4 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice5 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice6 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice7 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice8 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice9 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice10 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice11 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice12 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice13 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice14 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice15 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice16 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice17 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice18 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice19 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice20 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice21 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice22 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice23 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice24 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice25 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice26 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice27 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice28 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice29 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice30 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice31 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice32 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice33 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice34 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice35 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice36 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice37 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice38 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice39 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice40 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice41 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice42 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice43 =new ObjectChoiceField("",choices);
        ObjectChoiceField objChoice44 =new ObjectChoiceField("",choices);
    
        grid.add(objChoice);
        grid.add(objChoice1);
        grid.add(objChoice2);
        grid.add(objChoice3);
        grid.add(objChoice4);
        grid.add(objChoice5);
        grid.add(objChoice6);
        grid.add(objChoice7);
        grid.add(objChoice8);
        grid.add(objChoice9);
        grid.add(objChoice10);
        grid.add(objChoice11);
        grid.add(objChoice12);
        grid.add(objChoice13);
        grid.add(objChoice14);
        grid.add(objChoice15);
        grid.add(objChoice16);
        grid.add(objChoice17);
        grid.add(objChoice18);
        grid.add(objChoice19);
        grid.add(objChoice20);
        grid.add(objChoice21);
        grid.add(objChoice22);
        grid.add(objChoice23);
        grid.add(objChoice24);
        grid.add(objChoice25);
        grid.add(objChoice26);
        grid.add(objChoice27);
        grid.add(objChoice28);
        grid.add(objChoice29);
        grid.add(objChoice30);
        grid.add(objChoice31);
        grid.add(objChoice32);
        grid.add(objChoice33);
        grid.add(objChoice34);
        grid.add(objChoice35);
        grid.add(objChoice36);
        grid.add(objChoice37);
        grid.add(objChoice38);
        grid.add(objChoice39);
        grid.add(objChoice40);
        grid.add(objChoice41);
        grid.add(objChoice42);
        grid.add(objChoice43);
        grid.add(objChoice44);
    
        grid.getBorder(1);
        grid.setBorder(HIGHLIGHT_SELECT, getBorder(1));
    
        grid.setColumnPadding(7);
        grid.setRowPadding(15);
        add(new SeparatorField());
    
        vmagr.add(grid); vmagr.add(new SeparatorField()); add(vmagr);
    
        }
        public boolean onMenu(int instance) {
    
            return true;
        }
    
        }
    
  • Issue of bottom paint for horizontal scrolling

    Hello

    I have a HorizontalFieldManager with a gradient background which I've updated to enable horizontal scrolling. Scrolling works well, but the gradient background is not painted when scrolling to the right. Using trial and error "getHorizontalScroll()" to calculate and offset has not yet failed.

    The original code is lower for horizontal management.

    ...
        hm = new HorizontalFieldManager(hmStyle) {
          protected void paint (Graphics g) {
            g.clear();
            g.setBackgroundColor(bgColor);
            int[] xInds = new int[]{0, 0,getExtent().width, getExtent().width};
            int[] yInds = new int[]{0, getExtent().height, getExtent().height,0};
    
            final int[] cols = new int[]{bgColor, gradientColor, gradientColor, bgColor};
    
            g.drawShadedFilledPath(xInds, yInds, null, cols, null);
            super.paint(g);
          }
          protected void onFocus(int arg0) {
            super.onFocus(arg0);
            getScreen().invalidate();
          }
        };
    ...
    

    I know I'm probably not set up the xInds properly to compensate for offset from horizontal scrolling, but it's not obvious to me how to set up the offsets correctly. Can anyone offer a suggestion to troubleshoot? If not, is there a reference to certain documents which provides more detail than the docs of java on the functioning of the 'drawShadedFilledPath' and the logic of ScrollBar?

    Thanks in advance!

    int xstart = getHorizontalScroll();
    int xend = xstart + getVisibleWidth() - 1; // getWidth() is also good
    int[] xInds = new int[]{xstart, xstart, xend, xend};
    
  • How re-pair the bluetooth keyboard & numeric keypad - he will not give me a pairing code.

    I'm having a problem, try to re - connect my Bluetooth keyboard and numeric keypad.  First my keypad has been properly installed and works fine, but then when I tried to add the keyboard that I clicked on the number pad icon again once and he gave me a code to enter, I canceled just thinking it was already installed and working, and I didn't need to do.  Big mistake!  Now I could not do re-paired again.

    After talking with a guy tech at Staples, I disabled bluetooth for my laptop completely and then distributed in the computer and re-enabled Bluetooth.  I was able to add my mouse still fine, but now the keyboard and the numeric keypad gives me the same error and won't let me pair.   The message is:

    Pairing failed.  An ocrred of error during the process of pairing with Microsoft Bluetooth Number pad.  Make sure that the device is discoverable, and then click Retry.

    Well, I did it several times but without success.  He won't give me a code for one of these pair again.

    I use Windows XP.

    Can anyone help?

    Thank you!

    Penny

    Hello

    You can try the solutions listed in the articles below and check if that helps.

    http://support.Microsoft.com/kb/838398/en-us

    http://support.Microsoft.com/GP/cp_keyboards_master#TAB0

    http://www.Microsoft.com/hardware/Bluetooth/connectionguide3.mspx

    http://www.Microsoft.com/hardware/support/Bluetooth/en-us/default.mspx

    Hope this information is useful.

    Amrita M

    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to enable bluetooth in dell vostro 1015 with windows 7 starter 32-bit

    How to enable bluetooth in dell vostro 1015 with windows 7 starter 32-bit?

    [Moved from comments]

    Dilip,

    It would take a special function key to turn on the Bluetooth on the computer. You can consult the computer manual or contact Dell for the same thing.

    In addition, you can view the article-

    http://Windows.Microsoft.com/en-in/Windows7/connect-to-Bluetooth-and-other-wireless-or-network-devices

    http://Windows.Microsoft.com/en-in/Windows7/add-a-Bluetooth-enabled-device-to-your-computer

    http://Windows.Microsoft.com/en-in/Windows7/change-settings-for-a-Bluetooth-enabled-device

    To let us know.

  • Bluetooth mouse lag when Bluetooth keyboard is connected

    Hello

    I recently bought a Lenovo Thinkpad with windows 8, and I noticed a really annoying problem. I have a Bluetooth mouse and a bluetooth keyboard and my keyboard works fine, but when my Bluetooth keyboard is connected, my Bluetooth mouse is REALLY bad. If the keyboard is off then the mouse works great, only it messes up if the two are connected at the same time.

    I have seen several discussions on the Bluetooth mouse problems when playing games or transfer of data, but mine does all the time if I have my keyboard connected at the same time.

    Is there anything I can do to fix this?

    Troubleshooting Wireless and Bluetooth® questions Check and reset power check the (rechargeable) batteries

    Try to charge the unit. It can take an hour or more to fully charge your device. See the documentation provided with the device.

    Notes

    • The software can give warning of low battery. However, the State of the battery are not accurate if there is a problem connecting Wi - Fi. If you still receive warnings after replacing the batteries, continue with the other solutions provided in this article.
    • Some rechargeable batteries may need to be replaced. For more information on batteries, see the documentation provided with the device.

    Check the batteries (non-rechargeable)

    1. Make sure that you have installed the correct type of batteries in the device. For more information on batteries, see the documentation provided with the device.
    2. Replace all batteries with new batteries.

    Note

    The software can give warning of low battery. However, the State of the battery are not accurate if there is a problem connecting Wi - Fi. If you still receive warnings after replacing the batteries, continue with the other solutions provided in this article.

    Reset the power of the device

    1. If your device is equipped with a power switch, turn off the unit.
    2. If your device is equipped with removable batteries, remove the batteries and reinstall them. Make sure that they are correctly positioned.
    3. If your device is equipped with a power switch, turn on the device.

    Look for the software updates Check for Windows updates

    1. Click Start, click all programs, and then click Windows Update.
    2. Download and install the updates and priority updates custom, especially those related to the material.

    See the Readme file

    • See the Readme file for more information last minute product.

    Check the USB connection between the computer and the transceiver unplug and reconnect the transceiver.

    1. Disconnect the wireless transmitter/receiver and then plug it back.
    2. If the wireless transmitter/receiver is plugged into a USB hub, disconnect the hub, and then plug it in again.

    Plug the transceiver wireless to another port on the same computer.

    • If you have several USB ports, plug the transceiver wireless on a USB port different on the same computer.
    • If the wireless transmitter/receiver is plugged into a USB hub:
      1. Plug the hub on an another USB port on the same computer.
      2. Make sure that you use a powered hub that is appropriate for the powerful high USB devices.
      3. Try to plug the transceiver wireless directly into a USB port on the computer.

    Refresh the wireless connection all other devices connect wirelessly to Microsoft.

    1. Press the button on the wireless transmitter/receiver.
    2. Press the button connection on the underside of the unit.

    Optimize the signal check the placement of the wireless device.

    The wireless transmitter/receiver and the device must be correctly. Try the following solutions:

    • Place the device wireless closer to the wireless transmitter/receiver.
    • If you have a mouse and a keyboard, and they are both wireless, place them equidistant from the transceiver.
    • Turn the transceiver on the side or upside down.

    Some objects not wireless and wireless may cause interference with your wireless phone. To avoid interference from the transceiver, avoid using your device near objects such as:

    • Wireless network devices
    • Cell phones and wireless drill
    • Remote controlled toys
    • Microwave ovens
    • Cables parallel to the wireless transceiver cables
    • Metal surfaces in contact with the unit
    • Other transceivers and wireless pointing devices

    Setting up a Bluetooth device

    You can use the following information to help you resolve a problem with your device (keyboard or mouse) Bluetooth wireless.

    Check the connection between your computer and the transceiver Bluetooth

    • Make sure that Bluetooth is on.

      If you connect your device with an internal Bluetooth connection, make sure that wireless connections are active. Many laptops have a switch, a key or keyboard shortcut that enables wireless connections.

    • Turn on Bluetooth on your computer if your mouse does not have its own transceiver. If your mouse does not have its own transceiver, your desktop, laptop or laptop must have a two-way radio built into the computer, or you must use a non-Microsoft external transceiver. How the mouse will connect to the computer by Bluetooth, and how to turn on Bluetooth, varies depending on how it is implemented on the computer. You may need to contact the computer manufacturer or the manufacturer of the Bluetooth transmitter/receiver to find out how to activate Bluetooth on the computer and how to add a device to it.

    Refresh the connection Wireless to your Bluetooth device

    • Pair your Bluetooth device to your computer.
    • Re-establish a connection without wire if your computer does not detect a device compatible Bluetooth Microsoft if you try to use a Microsoft wireless keyboard compatible Bluetooth or mouse and the input device does not work, it is possible that your computer does not detect the device. To resolve this problem on a Windows computer, restore the link wirelessly with the computer. For more information, see the article of the Support Microsoft 811798 to http://support.microsoft.com/kb/811798

    Solve a connection failure when the installation software can connect to a Bluetooth Microsoft compatible device

    During installation, if the installer is unable to connect to the device via a Bluetooth connection, you must change the transmitter/receiver to use a Bluetooth mode managed by hardware.

    For more information, see the article of the Support Microsoft 953694 to http://support.microsoft.com/kb/953694

    Establish a Bluetooth connection when a device does not respond

    If the Bluetooth connection cannot be established, you may need to remove the device is unresponsive system and then add it again.

    1. Click Start, click all programs, and then click Windows Update.
    2. If the Bluetooth device is not responding is listed, select it and then click Remove.
    3. Click Start, click principally made programs, click the Microsoft mouse, and then click connect Bluetooth mouse.
    4. Follow the instructions in the wizard to connect to your device.

    Why is there a delay before a Bluetooth mouse answer after it has been idle

    To extend the battery life, Bluetooth devices go into hibernation after 8-10 minutes of inactivity. It may take several seconds for the Bluetooth mouse to reconnect when you resume using it after this period of hibernation. Thus, you may notice a delay between the time that you use the mouse and the response on the screen.

    Use other Bluetooth devices with Microsoft for Bluetooth wireless transmitter

    Bluetooth wireless technology allows you to connect several devices to your computer. You may be able to use other Bluetooth devices with Microsoft for Bluetooth wireless transmitter, but this connectivity is not always supported by Microsoft.

    For more information on the use of other Bluetooth devices with Microsoft for Bluetooth wireless transmitter, see the documentation provided with the device.

    For new devices, download the latest version of the software from the Web page of software downloading material.

    Connection of the keyboard of laptop Wedge for a tablet PC

    By default, the keyboard pairs Bluetooth Mobile from the hold with most tablet PC through safe simple pairing (SSP) with an authentication key. Some tablets, however, may not support SSP with an authentication key.
    In order to pair your keyboard hold such a Tablet Mobile successfully, use the following alternative pairing mode.

    Associate your keyboard by SSP without a password

    1. Hold down the Fn key as you press and hold the Connect button located under the keyboard. After 3 to 5 seconds, a small light on top of the keyboard flashes green and Red alternately. This means that your keyboard is detectable in your tablet in 6 minutes.
    2. On your Tablet PC, on the Start menu, select Control Paneland in category view, find the material and audio.
    3. Select Add a device.
    4. When the keyboard is listed, select it and follow the instructions to pair your keyboard Wedge with your tablet with success.

    Note
    If you want to associate your keyboard with a tablet or another computer that takes in charge the SSP with an authentication key, hold down the Connect button only.

    A keyboard or a Bluetooth mouse fails to reconnect after being left idle

    After you have used is not the keyboard or your Bluetooth mouse for a while, you may not be able to use the device again without rebooting the system or by turning your Bluetooth radio and turn it on again.

    For more information, see the article of the Support Microsoft 2758967 to http://support.microsoft.com/kb/2758967

  • HP 10 G2: HP 10 G2 auto connect/pair for bluetooth keyboard

    How can I configure my HP 10 G2 to recognize and automatically connect to bluetooth keyboard?  Everything works ok, but I don't remember the process to put in place.  No problem pairing or connection, but I remember configuration to automatically detect and connect.  Help, please.

    Hello and welcome to the HP support community!

    Normally, if you don't have any peripheral BlueTooth enabled is close and turn on the keyboard, the right must find each other and connect (if a successful matching has been done previously).

    I am now typing this on my old Palm BlueTooth Folding keyboard on a Tablet HP Pro slate 12 5.1.1 Android running.  She was immediately after I turned it on.

    Looking for paired keyboard settings, I see no such "connect automatically".  He just needs to connect.

    WyreNut

  • on screen keyboard disappear connected bluetooth keyboard

    I have connected a bluetooth keyboard, however, the screen keyboard on will not disappear.  Does anyone know how to remove?  I tried to erase the spotlight search and it does not work.  I rebooted and reconnected the unit without success.

    Try unpairing the BT keyboard and matching it back.

    Configure and use third-party Bluetooth - Apple Support Accessories

  • Dungeon of virtual keyboard to appear when you use bluetooth keyboard

    I use a surface 3 pro with a keyboard bluetooth as the main method of entry. The recent Firefox update keeps popping up a virtual keyboard of the system on each input field. This is a nice feature to have while no external keyboard is connected. However, it is extremely inconvenient if you have a connected bluetooth keyboard.

    Please would you consider to provide a toggle button to turn this feature off or just to test if a bluetooth keyboard is connected before appearing the virtual keyboard?

    Thank you.

    Hi, if you want to disable this feature, please enter about: config in the address bar of firefox (confirmed the message information where it appears) and search for the preference named ui.osk.enabled. Double-click it and change its value to false.

  • How to enable hibernation/standby on Satellite Pro M70-220

    Nice day!!!

    Can someone help me please on how to enable hibernation/standby on my laptop. When I try to do, the laptop always ask me to update the driver for the keyboard and mouse ps2 because it prevents the computer into hybernation mode, I tried to update it goes to microsoft update, but it says I have the latest driver and appropriate for my machine. What can I do to fix this? Thank you.

    Aries

    Hello

    I recommend first test mode hibernation without the mouse connection. In addition, the message of the PS/2 mouse is very mysterious because the laptop doesn t all taken supports PS/2!
    How do you connect the mouse?

    However, the hibernation mode must be activated before use. To use this feature, go to the power of the control panel and select Hibernate Hibernate indicator and activate!

  • Bluetooth keyboard

    When you use the Sony Bluetooth keyboard with my tablet, keying is often interrupted by the built-in keyboard of the tablet to appear on the screen. This causes the typing to stall and/or letters repeats. It seems to happen about every minute or so and the results by typing mail very uneven and entry. Anyone else notice this? How can I disable the on-screen keyboard using Bluetooth?

    Hi all
    Thank you for your messages.
    If this is your first time here, welcome to the Forums of Discussion of user.
    As Dan has said above, we tested the keyboard and are not double posting.
    We suggest you to support so a technician can help with your settings to resolve the conflict causing repetition.
    http://tablet.sel.Sony.com/1/1/SGPT111U... actSupport

  • pouvez the archos 101 Tablet pair with microsoft bluetooth keyboard 6000?

    ARCHOS and microsoft 6000 bluetooth keyboard

    pouvez the archos 101 Tablet pair with microsoft bluetooth keyboard 6000? What is the genric pairing passkey?

    This forum is for feedback on the site of the Microsoft Answers forum. You must find a site support or support for your table or the keyboard forums. I am not able to access material support of Microsoft sites (for example, http://www.microsoft.com/hardware/en-us), but there is a video at http://www.youtube.com/watch?v=BSmOY4fFgEE that may be useful. even if the video is on a different tablet version, one of the speakers specifically refers to the Archos 101 and the Microsoft Bluetooth Keyboard 6000.

    Oh, wait, now, I finally got http://www.microsoft.com/hardware/en-us/support/troubleshooting, which has a link to "how to set up a Bluetooth keyboard?

Maybe you are looking for