I created a macro in which I had to set the print settings using:
With ActiveSheet.PageSetup
.PrintTitleRows = "$1:$1"
.PrintTitleColumns = ""
ActiveSheet.PageSetup.PrintArea = "$A:$U"
End users complained that after the macro finishes, the Vertical scroll bar is slow, and in fact after the macro finishes, if you click on the vertical scroll bar and move it up and down quickly, one can clearly see a lag or delay between the pointer and the scroll bar.
Any ideas as to why this is happening and how I can fix it?
thank you
With ActiveSheet.PageSetup
.PrintTitleRows = "$1:$1"
.PrintTitleColumns = ""
ActiveSheet.PageSetup.PrintArea = "$A:$U"
End users complained that after the macro finishes, the Vertical scroll bar is slow, and in fact after the macro finishes, if you click on the vertical scroll bar and move it up and down quickly, one can clearly see a lag or delay between the pointer and the scroll bar.
Any ideas as to why this is happening and how I can fix it?
thank you