How to programmatically scroll reports

Stimulsoft Reports.NET discussion
Post Reply
mrapi
Posts: 282
Joined: Sat Dec 20, 2008 1:08 am

How to programmatically scroll reports

Post 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 !
Jan
Posts: 1265
Joined: Thu Feb 19, 2009 8:19 am

How to programmatically scroll reports

Post by Jan »

Hello,

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

Thank you.
mrapi
Posts: 282
Joined: Sat Dec 20, 2008 1:08 am

How to programmatically scroll reports

Post by mrapi »

Thank you !
Jan wrote:Hello,

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

Thank you.
Andrew
Posts: 4109
Joined: Fri Jun 09, 2006 3:58 am

How to programmatically scroll reports

Post by Andrew »

Always glad to help you! :biggrin:
mrapi
Posts: 282
Joined: Sat Dec 20, 2008 1:08 am

How to programmatically scroll reports

Post by mrapi »

Also thanks for your words ! :biggrin:
Post Reply