Dec 1, 2004 #1 mngaetez IS-IT--Management Mar 18, 2004 4 US Hi guys, could anybody help me to run a simple Crystal reports 10 report with a simple Visual FoxPro7 form. I want to print directly to the defualt printer. Thanks
Hi guys, could anybody help me to run a simple Crystal reports 10 report with a simple Visual FoxPro7 form. I want to print directly to the defualt printer. Thanks
Dec 1, 2004 1 #2 vidru Programmer Jul 18, 2003 2,113 US I don't think there are and FoxPro samples past CR 8.5, but this should get you started: RDC Sample Application in Visual FoxPro - Preview Report To print directly to the printer, you'll use the PrintOut method: ReportObject.PrintOut ([PromptUser], [NumberOfCopies], [Collated], [StartPageNumber], _ [StopPageNumber]) -dave Upvote 0 Downvote
I don't think there are and FoxPro samples past CR 8.5, but this should get you started: RDC Sample Application in Visual FoxPro - Preview Report To print directly to the printer, you'll use the PrintOut method: ReportObject.PrintOut ([PromptUser], [NumberOfCopies], [Collated], [StartPageNumber], _ [StopPageNumber]) -dave
Dec 1, 2004 Thread starter #3 mngaetez IS-IT--Management Mar 18, 2004 4 US I received this, and it works great. oCRApp = createobject("CrystalRuntime.Application.10") oRep = oCRApp.OpenReport("csr-pcklst.rpt") oRep.Printout(.F.) && .F. = no printer dialog Upvote 0 Downvote
I received this, and it works great. oCRApp = createobject("CrystalRuntime.Application.10") oRep = oCRApp.OpenReport("csr-pcklst.rpt") oRep.Printout(.F.) && .F. = no printer dialog