Mouse Wheel / Print Screen Frustration

KaiProton

Registered User.
Local time
Today, 18:04
Joined
Jan 22, 2005
Messages
35
Does anyone Know how to stop the mouse wheel from scrolling through the records,
my Dbase is for non-computer expert users and the ability to move records to the EOF and see a blank freaks them out,
does anyone know how to stop it from working, ???


Same for the Print screen, in normal MS applications the Print screen only records the screen to the Memory buffer, but on Access it actually prints the screen,

DO NOT ask me how the users are hitting the print screen button while inputting, its also a mistry to me :-)
 
... and the ability to move records to the EOF and see a blank freaks them out,

For that you could use the property "Me.AllowAdditions = False"
like that..they will not see a blank field.

If you happen to have to add a record then all you have to do id add a button and in the background you add
Code:
Me.AllowAdditions = True
DoCmd.GoToRecord , , acNewRec
[MyFirstField] = "whatever placeholder data"
Me.AllowAdditions = False

so it will add a new record and input a bit of data to your record and lock it back so they dont see a blank record once the new record is filled.
 

Users who are viewing this thread

Back
Top Bottom