1.

How To “print” In Crystal Reports While Using Asp Dot Net Platform?

Answer»

Using Crystal DECISIONS :

SharedCrystalReport1 CR= new CrystalReport1;here crystalreport1 is crystal report which we design.
CrystalViewer1.ReportSource = cr;

OR

we can DIRECTLY print the report without showing reportCrystalReport1
cr= new CrystalReport1;cr.PrintToPrinter(1,False,1,1);

Using Crystal Decisions :

SharedCrystalReport1 cr= new CrystalReport1;here crystalreport1 is crystal report which we design.
CrystalViewer1.ReportSource = cr;

OR

we can directly print the report without showing reportCrystalReport1
cr= new CrystalReport1;cr.PrintToPrinter(1,False,1,1);



Discussion

No Comment Found