Go Back   TechArena Community > Hardware > Hardware Peripherals
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags:

Sponsored Links



Mouse moving vertical direction

Hardware Peripherals


Reply
 
Thread Tools Search this Thread
  #1  
Old 28-02-2009
Dolla's Avatar
Member
 
Join Date: Dec 2005
Posts: 59
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
Reply With Quote
  #2  
Old 28-02-2009
ApPy10's Avatar
Member
 
Join Date: May 2006
Posts: 1,947
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.
Reply With Quote
  #3  
Old 28-02-2009
T.J.'s Avatar
Member
 
Join Date: May 2006
Posts: 2,518
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.
Reply With Quote
  #4  
Old 28-02-2009
Techguru01's Avatar
Member
 
Join Date: Oct 2005
Posts: 2,118
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
Reply With Quote
Reply

  TechArena Community > Hardware > Hardware Peripherals


Thread Tools Search this Thread
Search this Thread:

Advanced Search


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


All times are GMT +5.5. The time now is 05:30 AM.