G Guest Sep 14, 2004 #1 Does anyone know the code to disable a person's scroll button on their mouse while in an access database?
Does anyone know the code to disable a person's scroll button on their mouse while in an access database?
N Nick Coe \(UK\) Sep 14, 2004 #2 Have a look at Stephen Lebans' site. The following page in particular. http://www.lebans.com/mousewheelonoff.htm
Have a look at Stephen Lebans' site. The following page in particular. http://www.lebans.com/mousewheelonoff.htm
G Guest Dec 15, 2004 #3 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
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