G
Guest
I have a form that I wish to disable the wheelmouse on. I have followed the
directions given here: http://www.lebans.com/mousewheelonoff.htm.
However...
This particular form will be left open most of the day. From this form users
can enter new service logs, click a "save" button and the form remains open
for the next entry.
As I mentioned, I followed the instructions from www.lebans.com, but when I
then go to a different form the wheelmouse is disabled, but I want it to be
active.
My question is, can the wheelmouse be disabled on only one form, or does it
have to apply to all forms?
I inserted the code on the forms OnLoad event, should it be somewhere else?
This is what is in the Form:
Private Sub Form_Load()
' Turn the MouseWheel Off
Dim blRet As Boolean
blRet = MouseWheelOFF
End Sub
directions given here: http://www.lebans.com/mousewheelonoff.htm.
However...
This particular form will be left open most of the day. From this form users
can enter new service logs, click a "save" button and the form remains open
for the next entry.
As I mentioned, I followed the instructions from www.lebans.com, but when I
then go to a different form the wheelmouse is disabled, but I want it to be
active.
My question is, can the wheelmouse be disabled on only one form, or does it
have to apply to all forms?
I inserted the code on the forms OnLoad event, should it be somewhere else?
This is what is in the Form:
Private Sub Form_Load()
' Turn the MouseWheel Off
Dim blRet As Boolean
blRet = MouseWheelOFF
End Sub