Crystal report get currentpage and total of page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I want to know the current page and the total pages I have in a report. I was trying with the FieldsObject property but doesn't wor

Thanks you.
 
there is the way I find but not the best

to know the total number of pag
add this in the form loa

If viewstate("maxPage") Is Nothing The
crvEtat.ShowLastPage(
crvEtat.ShowFirstPage(
End I

and create a navigate even and add this

If viewstate("maxPage") Is Nothing The
viewstate.Add("maxPage", e.NewPageNumber
End I

to know the current pag
in the navigate eve

ipage = e.NewPageNumber
 
Back
Top