Mouse wheel navigating through records

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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.
 
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.
 
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.
 
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.
 
hi Stephen,
the sample MDP file is working, but I couldn't make mine work. any idea?

Thank you,
WL
 
Back
Top