How to programmatically scroll reports
Posted: Wed Jul 07, 2010 8:55 am
Hi !
There is a native way to programmatically scroll a report ?
This is useful for touchscreen application,now I use such a trick :
Thanks !
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