Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How do I turn scroll lock off (2007 excel)? No scroll lock key

The keyboards we use don't have a scroll lock button and someone has somehow
accidentally turned the scroll lock on and the arrows now move the whole
sheet instead of between cells.

Can't seem to locate short cut or command to turn scroll lock off.

Thanks

  #2   Report Post  
Posted to microsoft.public.excel.misc
KC KC is offline
external usenet poster
 
Posts: 94
Default How do I turn scroll lock off (2007 excel)? No scroll lock key

Righ Click on worksheet (say sheet1), then click on View Code.

paste the below code

'Begaining of the code
Private Declare Sub keybd_event Lib "user32.dll" _
(ByVal bVk As Byte, ByVal bScan As Byte, _
ByVal dwFlags As Long, ByVal dwExtraInfo As Long)

Private Declare Sub Sleep Lib "kernel32" _
(ByVal dwMilliseconds As Long)

Const VK_SCROLL = &H91
Const KEYEVENTF_KEYUP = &H2

Private Sub myScroll_Lock()
keybd_event VK_SCROLL, 0, 0, 0 'Press Scroll Lock
keybd_event VK_SCROLL, 0, KEYEVENTF_KEYUP, 0 'Release Scroll Lock
End Sub
'end of the code

now go back to your excel sheet and goto Macros (Alt+F8), and run
myScroll_Lock
everytime you run this function the scroll lock will toggle.

-kc
*Click YES if this works

"Cameron A Perth" wrote:

The keyboards we use don't have a scroll lock button and someone has somehow
accidentally turned the scroll lock on and the arrows now move the whole
sheet instead of between cells.

Can't seem to locate short cut or command to turn scroll lock off.

Thanks

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
scroll lock in Excel only Matt Excel Discussion (Misc queries) 3 March 5th 09 05:34 PM
How to navigate with arrow keys in Excel 2007? Tried Scroll Lock! Yvette Marie Excel Discussion (Misc queries) 4 January 6th 09 08:18 AM
how do I undo the scroll lock, thscroll lock button does not work scroll lock Excel Discussion (Misc queries) 3 July 19th 08 10:17 PM
Scroll lock is stuck and won't turn off nikole Excel Worksheet Functions 4 March 20th 08 02:13 PM
how to turn SCROLL LOCK OFF, when kwy not on keyboard? Margarita Excel Discussion (Misc queries) 9 October 15th 07 04:45 PM


All times are GMT +1. The time now is 12:45 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"