Mouse scroll

  • Thread starter Thread starter Guest
  • Start date Start date
this is what i did to prevent the scrolling with
Me.DataEntry and Me.AllowAdditions

If there no data or adding a new record, this will prevent you from scrolling
to other records
Me.DataEntry = True
Me.AllowAdditions = True

If editing or viewing previous record, this will prevent you from scrolling
to other or new records
Me.DataEntry = False
Me.AllowAdditions = False
 
Unfortunately, I am a beginner and do not know how to input the code from the
lebans website. Could either of you walk me through it in layman's terms? I
certainly appreciate it!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top