3
Answers

How to print Crystal report. Please Help

Mansoor Bari

Mansoor Bari

16y
5.3k
1
I have Two Buttons on my Page 1-SHOW and 2-PRINT. The SHOW button Displays a report through the dataset and ReportDocument and the code is working fine.Ok But my question is: What code should i write behind the PRINT Button (Click Event) so that user can see the Print Dialog Box and print the (already loaded) report to printer. Please anybody send me a simple code. Thanks
Answers (3)
0
Rahul Singh

Rahul Singh

NA 1.5k 226k 10y
Hi Pitchaiyan, You can use Process class methods for this purpose, check this link on MSDN.

You can do something like this on a button click or whatever event you want to bind:-

Process p = new Process();
p.StartInfo.FileName = "Yourfile.exe";
p.StartInfo.Arguments = String.Format(-- Your params--);
p.Start();