Scroll Button on Mouse

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know the code to disable a person's scroll button on their mouse
while in an access database?
 
Because users like to press the page u and down keys by accident as well, I
prefer this method:

DoCmd.GoToRecord , , acNewRec
Me.AllowAdditions = False

The only problem is that the .undo method is disabled, so you need to delete
manually on closing the form in this case.

Henry Wrage
 
Back
Top