AnNguyen > 20-09-22, 07:45 PM
Noname > 18-07-23, 12:32 PM
Private Sub Form_MouseWheel(ByVal Page As Boolean, ByVal Count As Long)
End Sub
longkd_bvct@yahoo.com.vn > 18-07-23, 04:33 PM
(20-09-22, 07:45 PM)AnNguyen Đã viết: Do nhiều cột nên em muốn khi nhất ctrl+con lăn chuột thì sẽ sang ngang chứ không dọc nữa thì làm thế nào?
Em cảm ơn!
Public Sub ScrollHorizontally()
' Get the current position of the horizontal scroll bar
Dim position As Long
position = Application.HorizontalScrollBarPosition
' Scroll the horizontal scroll bar by one notch
Application.HorizontalScrollBarPosition = position + 1
End Sub