There is a native way to programmatically scroll a report ?
This is useful for touchscreen application,now I use such a trick :
Code: Select all
StiViewerControl1.Focus()
For i As Integer = 1 To ...
SendKeys.Send("{DOWN}")
Next