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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top