[dabo-users] Putting two different reports in one .pdf file

2011-04-15 Thread Sibylle Koczian
Hello, after reading the documentation I thought I could get two reports in one file like this: pdfName = "myreps.pdf" rw = ReportWriter() with open(pdfName, "w") as outFile: rw.ReportFormFile = "myform_1.rfxml" rw.OutputFile = outFile # for testing rw.UseTestCursor = True

Re: [dabo-users] Putting two different reports in one .pdf file

2011-04-15 Thread Adrian Klaver
On Friday, April 15, 2011 12:02:04 pm Sibylle Koczian wrote: > Hello, > > after reading the documentation I thought I could get two reports in one > file like this: > > pdfName = "myreps.pdf" > rw = ReportWriter() > with open(pdfName, "w") as outFile: > rw.ReportFormFile = "myform_1.rfxml" >

Re: [dabo-users] Putting two different reports in one .pdf file

2011-04-15 Thread Paul McNett
On 4/15/11 12:02 PM, Sibylle Koczian wrote: > Hello, > > after reading the documentation I thought I could get two reports in one > file like this: > > pdfName = "myreps.pdf" > rw = ReportWriter() > with open(pdfName, "w") as outFile: > rw.ReportFormFile = "myform_1.rfxml" > rw.OutputFi

Re: [dabo-users] Putting two different reports in one .pdf file

2011-04-15 Thread Nate Lowrie
On 4/15/11 3:02 PM, Sibylle Koczian wrote: > Hello, > > after reading the documentation I thought I could get two reports in one > file like this: > > pdfName = "myreps.pdf" > rw = ReportWriter() > with open(pdfName, "w") as outFile: > rw.ReportFormFile = "myform_1.rfxml" > rw.OutputFil

Re: [dabo-users] Putting two different reports in one .pdf file

2011-04-15 Thread John Fabiani
On Friday, April 15, 2011 03:12:56 pm Nate Lowrie wrote: > On 4/15/11 3:02 PM, Sibylle Koczian wrote: > > Hello, > > > > after reading the documentation I thought I could get two reports in one > > file like this: > > > > pdfName = "myreps.pdf" > > rw = ReportWriter() > > > > with open(pdfName,

Re: [dabo-users] Putting two different reports in one .pdf file

2011-04-16 Thread Sibylle Koczian
Am 15.04.2011 21:39, schrieb Adrian Klaver: >> >> Creating and showing either one of the reports using the file name as >> rw.OutputFile property and rw.write() works as expected, so the reports >> themselves seem to be correct. But I want to get them into one file and >> print them on one page, wi

Re: [dabo-users] Putting two different reports in one .pdf file

2011-04-16 Thread Sibylle Koczian
Am 15.04.2011 21:47, schrieb Paul McNett: > On 4/15/11 12:02 PM, Sibylle Koczian wrote: >> Creating and showing either one of the reports using the file name as >> rw.OutputFile property and rw.write() works as expected, so the reports >> themselves seem to be correct. But I want to get them into o

Re: [dabo-users] Putting two different reports in one .pdf file

2011-04-16 Thread Adrian Klaver
On Saturday, April 16, 2011 2:23:38 am Sibylle Koczian wrote: > Am 15.04.2011 21:39, schrieb Adrian Klaver: > >> Creating and showing either one of the reports using the file name as > >> rw.OutputFile property and rw.write() works as expected, so the reports > >> themselves seem to be correct. But

Re: [dabo-users] Putting two different reports in one .pdf file

2011-04-17 Thread Sibylle Koczian
Should have gone to the list in the first place! Sorry, Sibylle Am 16.04.2011 20:46, schrieb Adrian Klaver: > > Actually it does seem to work. Using the demo invoice.rfxml file either of the > methods below seem to work: > > pdfName = "myreps.pdf" > rw = ReportWriter() > with open(pdfName, "w") a