Page 1 of 1

How to programmatically scroll reports

Posted: Wed Jul 07, 2010 8:55 am
by mrapi
Hi !
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
Thanks !

How to programmatically scroll reports

Posted: Wed Jul 07, 2010 12:54 pm
by Jan
Hello,

You can use PageFirst, PagePrev, PageNext and PageLast methods of viewer control.

Thank you.

How to programmatically scroll reports

Posted: Wed Jul 07, 2010 3:20 pm
by mrapi
Thank you !
Jan wrote:Hello,

You can use PageFirst, PagePrev, PageNext and PageLast methods of viewer control.

Thank you.

How to programmatically scroll reports

Posted: Wed Jul 07, 2010 10:30 pm
by Andrew
Always glad to help you! :biggrin:

How to programmatically scroll reports

Posted: Thu Jul 08, 2010 1:34 pm
by mrapi
Also thanks for your words ! :biggrin: