Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My WinForms app uses the mouse wheel, subscribing to the Control.MouseWheel event. How can I get it to work with scrolling methods from other input devices, in particular "finger along the edge" scrolling on the (Synaptics) trackpad on my T61? I assume that I need to wire up the trackpad messages to the Control.MouseWheel event somehow, but I have no idea where to start...

EDIT: This is currently not working; so my trackpad is evidently not sending Control.MouseWheel messages.

Thanks!

(I am using C#, but this is surely .Net general).

share|improve this question

5 Answers

up vote 1 down vote accepted

The Lenovo drivers don't work the way that you'd hope. There's a workaround, posted here: http://blogs.msdn.com/b/markrideout/archive/2006/01/12/datagridview-mouse-scrolling-button-with-ibm-ultranav-driver.aspx which involves tricking the mouse driver into recognizing that you want scroll messages.

share|improve this answer
Thanks, finally a solution! – Joel in Gö Oct 29 '10 at 13:28

If it is just your machine, then easiest thing to do is to edit TP4table.dat file and add application name in it, as explained here: http://www.syaoran.net/blog/2010/01/how-to-enable-thinkpad-trackpoint-scrolling/

share|improve this answer

In general, the scrolling action on a trackpad simply sends the same signals to the PC as the scroll wheel on a mouse so your current implementation should work.

share|improve this answer
4  
They should send mouse wheel messages, but Synaptics drivers do not. They actually look for native Windows scroll bars and manipulate them. And Synaptics touch pads seem to be the most widely used. – Jordan Miner Apr 9 '09 at 21:27

As a brief note: manuals for developers can be found here, but seem to offer no straightforward answer to the question.

share|improve this answer

I've got this same problem (also using C#). No MouseWheel event is triggered when the trackpad's scrollers (for lack of a better term) are used. This post is the only lead I've found after some fairly extensive searching.

Sorry I've got nothing to add, but I think this post deserves bumping.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.