Mouse wheel navigating through records

G

Guest

Hi,

I tried that dll file provided in http://www.lebans.com/mousewheelonoff.htm
but it didn't work with me. I placed the dll file in the same directory
where my mdb is, and I typed the following into the form code:
-------------------------

Private Sub Form_Load()
' Turn the MouseWheel Off
Dim blRet As Boolean
blRet = MouseWheelOFF
End Sub

-------

Private Sub Form_Unload(Cancel As Integer)
' Turn the MouseWheel On
Dim blRet As Boolean
blRet = MouseWheelON

End Sub
 
S

Stephen Lebans

Hi Arvin,
the MouseHook DLL is a standard Windows DLL written in C++. It is not an
ActiveX DLL so it does not require registration.
:)
--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
S

Stephen Lebans

Can you get the sample MDB to work properly on your system?

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
K

Ken Snell

After you put the .dll file into the same directory as your database, close
your database. Then reopen it. The database will not look for the .dll each
time you call the code, just when the database is opened.
 
G

Guest

Stephen,
The sample MDB is working fine. But I couldn't make it run on my form load.
 
G

Guest

Yes ken, I already did that. No positive result.

Ken Snell said:
After you put the .dll file into the same directory as your database, close
your database. Then reopen it. The database will not look for the .dll each
time you call the code, just when the database is opened.
 
G

Guest

hi Stephen,
the sample MDP file is working, but I couldn't make mine work. any idea?

Thank you,
WL
 

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

Top