Cũng may nhờ có AutoHotkey (Open Source) & chút code nho nhỏ này, cuối cùng chúng ta cũng cuộn ngang được trong Excel. (Đè Shift trái & cuộn chuột giống như trong Visio)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#IfWinActive, ahk_class ahk_class XLMAIN | |
LShift & WheelUp::ComObjActive("Excel.Application").ActiveWindow.SmallScroll(0,0,0,1) ; Scroll left. | |
LShift & WheelDown::ComObjActive("Excel.Application").ActiveWindow.SmallScroll(0,0,1) ; Scroll right. | |
#IfWinActive | |
~LShift & WheelUp:: ; Scroll left. | |
ControlGetFocus, fcontrol, A | |
Loop 2 ; <-- Increase this value to scroll faster. | |
SendMessage, 0x114, 0, 0, %fcontrol%, A ; 0x114 is WM_HSCROLL and the 0 after it is SB_LINERIGHT. | |
return | |
~LShift & WheelDown:: ; Scroll right. | |
ControlGetFocus, fcontrol, A | |
Loop 2 ; <-- Increase this value to scroll faster. | |
SendMessage, 0x114, 1, 0, %fcontrol%, A ; 0x114 is WM_HSCROLL and the 1 after it is SB_LINELEFT. | |
return |
- code chạy được với bất kì app nào có thanh cuộn ngang
- code này chỉ chạy với AutoHotkey_L, bản basic không chạy được đâu nhé.
Cập nhật ngày 30-oct-2011: Code này không chạy được với Word 2010, Outlook 2010 , khả năng là nó đòi 1 đoạn code riêng để nhận biết như cái đoạn code "nhận diện" ExcelApp ở trên, Bực mình nhưng tạm để đó vài bữa nữa fix.