ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   scrolllock key off (https://www.excelbanter.com/excel-programming/359684-scrolllock-key-off.html)

whizzz2004

scrolllock key off
 

hello,

Can somebody tell me how to turn off the scrolllock key
when i start a excel folder (VBA)

Thanks


--
whizzz2004
------------------------------------------------------------------------
whizzz2004's Profile: http://www.excelforum.com/member.php...o&userid=33814
View this thread: http://www.excelforum.com/showthread...hreadid=535880


Chip Pearson

scrolllock key off
 
Try code like the following:


Declare Function GetKeyboardState Lib "user32" (pbKeyState As
Byte) As Long
Declare Function SetKeyboardState Lib "user32" (lppbKeyState As
Byte) As Long
Const C_SCROLL_LOCK_KEY = 145
Sub ScrollLockOn()
Dim lpbKeyState(256) As Byte
GetKeyboardState lpbKeyState(0)
lpbKeyState(C_SCROLL_LOCK_KEY) = 1
SetKeyboardState lpbKeyState(0)
End Sub


Sub ScrollLockOff()
Dim lpbKeyState(256) As Byte
GetKeyboardState lpbKeyState(0)
lpbKeyState(C_SCROLL_LOCK_KEY) = 0
SetKeyboardState lpbKeyState(0)
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"whizzz2004"
wrote
in message
...

hello,

Can somebody tell me how to turn off the scrolllock key
when i start a excel folder (VBA)

Thanks


--
whizzz2004
------------------------------------------------------------------------
whizzz2004's Profile:
http://www.excelforum.com/member.php...o&userid=33814
View this thread:
http://www.excelforum.com/showthread...hreadid=535880





All times are GMT +1. The time now is 09:00 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com