I have a Issues Database that I am trying to tweek. I need to add a scroll bar to the Issues form in the comments section. I also would like to stop the records from scrolling.
In Design View for the form, select the Comments textbox and goto Properties - Format and set Scroll Bar Property to Vertical.
If by "scrolling records" you mena running thru the records by way of the Mouse Wheel, if you're running Access 2007, you already have a function that addresses this issue! Just check with Help.
For all other versions, you'll need some outside help. A gentleman by the name of Stephen Lebans has a sample database that does this and it can be downloaded at:
First, download and unzip the db and take a look. Go into your db and goto File > External Data > Import and import the module modMouseHook from the sample database. Next make sure you have the included file, MouseHook.dll, in the same folder your database resides in. The following code needs to run before the mousewheel will be locked:
Code:
Private Sub Form_Load()
'Turn off Mouse Scroll
blRet = MouseWheelOFF
End Sub
If you have one form that always loads first in your db, place the code there. If the first form to load varies, place the same code in each form.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.