deployment - Deploying C# application that uses Crystal Reports -
i'm developing .net 2.0 c# program vs2005 prints crystal reports document. program deployed @ client computer take raw rpt file , print, no design required.
i use following code:
reportdocument crrpt = new reportdocument(); crrpt.load(pathtorptfile); crrpt.printoptions.printername = settings.print_printer; crrpt.printoptions.paperorientation = paperorientation.portrait; crrpt.printtoprinter(1, false, 0, 0);
on machine full cr xi r2 developer designer installed, managed send job prints printer.
what steps deploy or create installer program can install , run on client computer? if possible @ minimal without need install full cr. also, client need license read , print?
appreciate guide or link this. many in advance.
i had kind of problem while using crystal reports , there few things should aware.
- you don't have install crystal in client's computer. mut installed in server running.
- what facing cr , server compatibility.
- also double check whether running 64 or 32 bits. important.
note: assuming using windows server. please check out table, versions , compatibilities: https://wiki.scn.sap.com/wiki/pages/viewpage.action?original_fqdn=wiki.sdn.sap.com&pageid=56787567
Comments
Post a Comment