Scrolling in a form in Access

K

Kerri

I am having srcolling issues..... Is there a way for "dummies" to make the
scroll actually scroll through the form instead of going to the next
record??? This is driving me INSANE!!!! I am using Access 2003.
 
K

Kerri

thank you for the site, but how does someone "a tech dummy" actually
implement this?

Kerri
 
M

missinglinq via AccessMonster.com

Create a new folder, then move or Download the sample database zip file into
it. Unzip the file into this folder. Do whatever is necessary in your version
of Windows to show Hidden Files. You should now have the ZIP file, the sample
database, A2KMouseWheelHookVer22.mdb, and the MouseHook.DLL file. Go into
the sample database and have a look around. When you’re ready, go into your
database, and goto File - External Data - Import and import the module
modMouseHook from the sample database.

You then need to place a copy of the MouseHook.dll file in the same folder as
your database.

In the first form to load in your db use this code:

Private Sub Form_Load()
' Turn off Mouse Scroll
blRet = MouseWheelOFF
End Sub

Save everything then crank up your database and you should be set!
 
K

Kerri

Thank you, that worked!!! I wish there was a way to be able to scroll
through the form without going to the next record though, it is definately
easier than using the scroll bar.

Kerri
 
Top