04-29-2002 02:14 PM
04-29-2002 03:24 PM
05-01-2002 04:06 PM
01-22-2004 01:18 PM
05-16-2011 11:43 AM
Please Explain this: "There is also a way to have numeric tables spread over multiple pages"
thanx.
05-17-2011 08:42 PM
Hi Punkmonkey,
It's an ancient setting in REPORT tables, nowadays called "Automatic increasing" in the "Scaling" tab of the 2D Table configuration dialog. That was a cool feature back before REPORT had multiple sheets, but it's not usually what customers want now. I can send you ugly code to span a table over multiple sheets the way you probably want, but it's brittle.
Brad Turpin
DIAdem Product Support Engineer
National Instruments
05-18-2011 07:56 AM
Yep. I'm doing something like this which appears to work.:
Call PicLoad(autoactpath & "\MobisSummary.TDR") Call GraphSheetRename("Sheet 1", "Summary") Call PicUpdate PrintRangeType = "PageEnums" PrintFromPage = 1 PrinttoPage = 1 Call PicMaxPageCalc For intCount = 1 to MaxYPage 'Printing all pages of the table CurrYPage = intCount Call PicPdfExport(Filedlgdir & "Report.pdf", True) Next For intCount = 2 to groupcount if intcount=2 then Call PicLoad(autoactpath & "\MobisReport.TDR") else Call PicFileAppend(autoactpath & "\MobisReport.TDR") end if Call GraphSheetRename("Sheet 1", GroupDescript(intCount)) Call PicUpdate next Call PicPdfExport(Filedlgdir & "Report.pdf", True)
It would be nice if the report would automagically add pages if the table size is "Automatic increasing"