Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I have a table , there is a scrol bar it will alway move to left , may i know how to make it move to right by button action ?
HI,
I'm afraid this doesn't work from a button.. it will only work when opening the document. I think this is because it sets the starting position or something. Anyway, code is something like...
sub mcrScroll
set chart = ActiveDocument.GetSheetObject("CH229784")
set p = chart.GetProperties
p.ChartProperties.XScrollInitRight = true
chart.SetProperties p
end sub
Hope that helps!
Thank you very much for your advise.