Does anyone know how to change hypetias code at thread222-902639 to allow a smallchange in scrolling. my understanding is that the default change is 3 lines can this be manipulated?
You can use SystemParametersInfo function to change this setting.
___
[tt]
Option Explicit
Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal lpvParam As Any, ByVal fuWinIni As Long) As Long
Const SPI_SETWHEELSCROLLLINES = 105
Const SPIF_SENDWININICHANGE = &H2
Const SPIF_UPDATEINIFILE = &H1
Const WHEEL_PAGESCROLL = -1
Private Sub SetMouseWheelScrollLines(Lines As Long)
SystemParametersInfo SPI_SETWHEELSCROLLLINES, Lines, 0&, SPIF_SENDWININICHANGE Or SPIF_UPDATEINIFILE
End Sub[/tt]
___
You can pass 0 to SetMouseWheelScrollLines function to disable scrolling. Passing the special value WHEEL_PAGESCROLL scrolls one whole page.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.