no scroll mouse

le888

Registered User.
Local time
Today, 17:21
Joined
Dec 10, 2003
Messages
344
Hi,

Is it possible to have a simple code which stop the scrolling mouse. I have search around in this forum and found a thread with an example named "nomouse". I'm a fright to use this code because thet seem complexe. Also, I'm in the end phase my design, I don't want to worse my database. So, is it possible to have a simpler code?

Thanks,

Le
 
search under "disable mouse wheel" as there are a ton of posts on how to do this - some simple and some complex...

HTH,
Kev
 
Kevin_S said:
search under "disable mouse wheel" as there are a ton of posts on how to do this - some simple and some complex...

HTH,
Kev

Thanks for your reply. If I use the following code :

Private Sub Form_Load()
Set clsMouseWheel = New MouseWheel.CMouseWheel
Set clsMouseWheel.Form = Me
clsMouseWheel.SubClassHookForm
End Sub

Private Sub Form_Close()
clsMouseWheel.SubClassUnHookForm
Set clsMouseWheel.Form = Nothing
Set clsMouseWheel = Nothing
End Sub


Should I add the mousewheel.dll beside my database, if yes is it possible to add in the database instead a extern file?

Right now, I have a mouse with two buttons and I don't have a scroll wheel. Is it possible to do test with another key?

Thanks.

Le
 
le -

I'm not familiar with that version of trapping to code as I do it another way so I cannot answer wether or not you need the .ddl file but it is external and you cannot imbed it in the access database, that I am sure of.

If you don't have a mouse wheel you cannot test... I do not know of any work around...

HTH,
Kev
 
I would avoid the DLL method but the choice is yours. You will need a scroll wheel mouse to test these methods.

Check out the nomouse.zip sample I posted

Check out the A better mouse trap? sample I posted

Good luck!
 
ghudson said:
I would avoid the DLL method but the choice is yours. You will need a scroll wheel mouse to test these methods.

Check out the nomouse.zip sample I posted

Check out the A better mouse trap? sample I posted

Good luck!

Thanks, I have download the "nomouse" sample and I have problem with it. Here is the error message " error 53 and VBA332.dll. I have copy the VBA332.dll beside the nomouse apllication and it deosn't work. Want to do?

Le
 

Users who are viewing this thread

Back
Top Bottom