MouseWheel arguments

D

DebbieG

Private Sub Form_MouseWheel(ByVal Page As Boolean, ByVal count As Long)

In the above line, what is a Page to the MouseWheel?

I tried adding this to Form_Current:

Dim test1 As Boolean
Dim test2 As Long
Call Form_MouseWheel(test1, test2)
MsgBox "test1 = " & test1
MsgBox "test2 = " & test2


If I use the MouseWheel, Page = False. I figured Page was when I changed
records and Count was how many records.

Thanks to anyone who can answer my curiosity,
Debbie
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top