Results 1 to 4 of 4

Thread: Mouse moving vertical direction

  1. #1
    Join Date
    Dec 2005
    Posts
    102

    Mouse moving vertical direction

    I am under windows xp, my mouse with wire is connected in PS/2. As soon as starting, the arrow remains in the median axis of the screen and carries out only vertical movements without leaving the axis. Is this mean that it is time for a new mouse. Thank you

  2. #2
    Join Date
    May 2006
    Posts
    2,335

    Re: Mouse moving vertical direction

    Is this a optical mouse or a mechanical mouse that uses a rubber ball that makes contact with wheels inside the unit when it is rolled on a pad or desktop. If it is a mechanical mouse then try dismounting the ball from inside and check that it is not dirty inside, and moves the roller of the horizontal axis to test.

  3. #3
    Join Date
    May 2006
    Posts
    2,812

    Re: Mouse moving vertical direction

    You're not saying much about your system, hardware, graphics card, or board chipset - more of a description might help.
    Look in Control Centre - Region & Access - Keyboard layouts - there are several wireless k/b avail - try them out.
    As ya have some of the meece functions working, should be real easy.
    Dont forget to logout/login or reboot.

  4. #4
    Join Date
    Oct 2005
    Posts
    2,358

    Re: Mouse moving vertical direction

    You can draw a custon gridline at any position in the axis, it does not have to be at one of the tickmarks/gridlines. If you were getting this behavior tit must be because something you were doing in the code that made it jump.

    The following code, when included in the MouseMove event of a chart will produce a vertical gridline at the position of the mouse:

    CustomGridLine mousePointer;

    if (chart1.AxisX.CustomGridLines.Count == 0) {
    mousePointer = new CustomGridLine();

    mousePointer.Color = Color.Red;
    // TODO: Any other customization you want to do the the gridline

    chart1.AxisX.CustomGridLines.Add(mousePointer);

    } else

    mousePointer = chart1.AxisX.CustomGridLines[0];

    double x = chart1.AxisX.PixelToValue(e.X);

    double min,max;
    chart1.AxisX.GetScrollView(out min, out max);

    x = Math.Min(x,max);
    x = Math.Max(x,min);

    mousePointer.Value = x;
    I'm the Proud Owner of the most dangerous weapon
    known to man kind: Human Brain

Similar Threads

  1. Replies: 5
    Last Post: 21-11-2011, 10:55 PM
  2. Replies: 9
    Last Post: 17-11-2011, 12:20 PM
  3. Replies: 6
    Last Post: 15-04-2011, 10:22 AM
  4. Replies: 5
    Last Post: 18-08-2010, 05:55 AM
  5. Mouse not moving for playing Alpha Protocol
    By Bhupathi in forum Video Games
    Replies: 9
    Last Post: 29-06-2010, 05:34 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,255,574.06677 seconds with 16 queries