View Full Version : Logitech wheel mouse problem


Doppenberg
11-03-2000, 12:13 AM
Does anyone know if there is a way to stop the Logitech wheel mouse from moving to a new record in a form?
It acts the same way as the PageDown key.
I solved that problem by using the following code:

Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)

Select Case KeyCode
Case 33, 34
KeyCode = 0
End Select

End Sub

This worked fine for the PageDown key, but it does not seem to work for the scroll wheel of the mouse.

Does someone have any idee how to solve this problem?

Gr. Tim

Atomic Shrimp
11-03-2000, 02:54 AM
Apparently there is a patch from Microsoft to fix this sort of thing; have a look at http://support.microsoft.com/support/kb/articles/Q192/0/08.ASP

HTH

Mike

Doppenberg
11-03-2000, 06:13 AM
Thanks for your reply, but this does not work.

This is a patch for Access 97 and the solution is to install SR-2.
I'm using Office 2000 Pro and I am still having this problem.

Any other suggestions?

Tim