Home > OS >  Display specific page in crystal report viewer c#
Display specific page in crystal report viewer c#

Time:11-19

i have a 3 buttons and a crystal report viewer. What i want to do is when i click a button, a specific page will be displayed in crystal report viewer. Ex: when i click button2 then page2 will be displayed. Can you guys help me with that please? I use c# by the way

CodePudding user response:

Use the below line :

  crystalreportviewer1.ShowNthPage(int);
  • Related