Locking the page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • billyqgoat
    New Member
    • Mar 2007
    • 21

    Locking the page

    Hi -

    I have read the post on how to lock the mouse scroll feature on Access so that you don't scroll between records inadvertently. (http://www.lebans.com/mousewheelonof...MouseWheelHook)

    However, I'm not sure what he means (I've learned Access, but am not familiar with the codes). I pasted

    Code:
    Private Sub Command14_Click()
    ' Turn the MouseWheel Off
    Dim blRet As Boolean
    blRet = MouseWheelOFF
    End Sub
    into the code for a particular form. The website also mentioned copying the "mousehook DLL" into the Windows System folder. What is that?? (the DLL, not the folder).

    Thanks again, and I apologize for the rudimentary nature of this post.
  • missinglinq
    Recognized Expert Specialist
    • Nov 2006
    • 3533

    #2
    Here's part of a file I have with a condensed version of Lebans' installation instructions:

    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, use your FIND feature in Windows to make sure you have the file MouseHook.dll on your PC. You may have to go into Windows and select "Show hidden files" then run FIND. You need to place a copy of this file in the same folder your database resides in.

    Good Luck!

    Linq

    Comment

    • billyqgoat
      New Member
      • Mar 2007
      • 21

      #3
      Very helpful!! Thanks,
      Kathleen


      Originally posted by missinglinq
      Here's part of a file I have with a condensed version of Lebans' installation instructions:

      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, use your FIND feature in Windows to make sure you have the file MouseHook.dll on your PC. You may have to go into Windows and select "Show hidden files" then run FIND. You need to place a copy of this file in the same folder your database resides in.

      Good Luck!

      Linq

      Comment

      • billyqgoat
        New Member
        • Mar 2007
        • 21

        #4
        Okay... I imported the Module into my database, and copied the application into the folder where my database lives. I also copied the application into the main Windows folder. But the scroll function has not been turned off. Any other tips??

        Thanks,
        Billyqgoat

        Comment

        Working...