Is there a way to have the active document scroll down a given number of lines through VBA code?
J Jim Burke in Novi Jun 20, 2008 #1 Is there a way to have the active document scroll down a given number of lines through VBA code?
J Jean-Guy Marcil Jun 20, 2008 #2 Jim Burke in Novi said: Is there a way to have the active document scroll down a given number of lines through VBA code? Click to expand... To scroll down one line: ActiveWindow.SmallScroll 1 or ActiveWindow.SmallScroll Down:=1 To scroll up one line: ActiveWindow.SmallScroll , 1 or ActiveWindow.SmallScroll Up:=1
Jim Burke in Novi said: Is there a way to have the active document scroll down a given number of lines through VBA code? Click to expand... To scroll down one line: ActiveWindow.SmallScroll 1 or ActiveWindow.SmallScroll Down:=1 To scroll up one line: ActiveWindow.SmallScroll , 1 or ActiveWindow.SmallScroll Up:=1