Page 1 of 1

PDF using R&R OCX

Posted: Wed Oct 26, 2005 11:21 am
by R&R_user_(Guest)
Using R&R ver 10+ I am able to print to a PDF file if i use RRWRUN.exe__I was not able to do it from the OCX and no PDF option shows up in the documentation.__Any idea if PDF can be produced while using the OCX ?

=> RE: PDF using R&R OCX

Posted: Thu Oct 27, 2005 10:42 am
by kfleming
I just did a quick test with this code in VB and was able to produce PDF output using the OCX.____Private Sub Command1_Click()__RRReport1.ReportName = "C:QAugfilesPDF.RRW"__RRReport1.Printer = "R&R PDF Export"__RRReport1.PrintFileName = "C:qaugfilesmypdf.pdf"__RRReport1.Action = 1__End Sub______Kathleen__R&R Support

==> RE: PDF using R&R OCX

Posted: Mon Oct 31, 2005 8:09 am
by R&R_user_(Guest)
Can you also confirm that the ^?^ in the printer property does display a printer dialog box as documented.__My experiance is that it automatically sends it to the default printer when set as:____rrreport1.destination := 2__rrreport1.printer := ^?^__

===> RE: PDF using R&R OCX

Posted: Mon Oct 31, 2005 8:38 am
by kfleming
When I use:__Private Sub Command1_Click()__RRReport1.ReportName = "C:QAugfilesPDF.RRW"__RRReport1.Printer = "?"__RRReport1.Destination = "2"__RRReport1.Action = 1__End Sub____I correctly get the printer dialog.____Kathleen__R&R Support