I have a main form with 3 subforms. I want to allow the users to use the MouseWheel to navigate the main form but I'm having troubles. Here's my code:
cmdPrevious and cmdNext work fine. But when I use the MouseWheel it looks like it's trying but won't move off the current record.
Any suggestions?
Debbie
Code:
Private Sub Form_MouseWheel(ByVal Page As Boolean, ByVal Count As Long)
If Count > 0 Then
Call cmdPrevious_Click
Else
Call cmdNext_Click
End If
End Sub
Any suggestions?
Debbie