|
| |||||||||
| Tags: mouse |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| 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
| ||||
| ||||
| 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.
__________________ Education, Career and Job Discussions |
|
#3
| ||||
| ||||
| 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
| ||||
| ||||
| 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 |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Mouse moving vertical direction" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| After updating to Mac OS X Lion, Lost vertical scroll on magic mouse | pasture | Operating Systems | 5 | 21-11-2011 10:55 PM |
| Vertical vs. Horizontal Mouse Sensitivity in The Elder Scrolls V: Skyrim | Chande | Video Games | 9 | 17-11-2011 12:20 PM |
| Firefox not refreshing/loading unless I keep moving mouse pointer | Crista | Technology & Internet | 5 | 18-08-2010 06:55 AM |
| Mouse not moving for playing Alpha Protocol | Bhupathi | Video Games | 9 | 29-06-2010 06:34 AM |
| Vertical scrolling problems with mouse | simrick405 | Vista Hardware Devices | 5 | 10-06-2008 07:31 PM |