print report
hi,
I can get the desired print locally from the web page I established with the help of Crystal Report .
But on the other hand when I want to print the same thing from a remote machine,
it is not working..
I mean it is sending the print to the printer which is connected to the server machine .
I am using the following codes for this matter ..
TmpReport.SetDataSource(dataSet1);
TmpReport.PrintOptions.PaperSize = CrystalDecisions.Shared.PaperSize.PaperA4;
TmpReport.PrintToPrinter(1), false, 1, 1);
thanks..
|