Hi,
I am using crystal reports from VB.
Now what can I do to change paper size in runtime.
(ie) i want to take printout on a A4 size paper but i have designed the report for A3 size paper
Is it possible to change ?
Printable View
Hi,
I am using crystal reports from VB.
Now what can I do to change paper size in runtime.
(ie) i want to take printout on a A4 size paper but i have designed the report for A3 size paper
Is it possible to change ?
Sure you can change the paper size before printing, if you're using the runtime library. It would look something like this...
If you haven't done so already, I suggest downloading Crystal's RDC browser to get all the info you need on the runtime library. Got to support.crystaldecisions.com/docs and search for rdc8_browser.exeCode:Dim rpt As CRAXDRT.Report
Dim myapp As CRAXDRT.Application
Set myapp = New CRAXDRT.Application
Set rpt = myapp.OpenReport("myreport.rpt")
rpt.PaperSize = crPaperA4
rpt.PrintOut