Showing related tags and posts across the entire site.
-
Hi, I want to have page borders (on each page) in a document which contains one long table. Some rows in this table enforce page breaks by PageBreakBehaviorEnum .MustBreak. If I use table borders then they do not span over the whole page when a page break comes somewhere in the middle. I have not found...
Posted to
Reports for WinForms
by
pkrcal
on Tue, Jan 26 2010
Filed under: C1PrintDocument, border, RenderTable, page break row column rendertable pagebreak
-
C1Report 2.6.20093.53207 applies using VS2008 VB.NET Have generated a C1PrintDocument that prints perfectly (in landscape). Now want to export that document to a PDF file without the use of a (at least visible) C1Preview Control as the end user should not be aware what is going on as it will be automatically...
-
I'm trying to develop a report using rendertable in C1PrintDocument with the data coming from a database. So far so good and report is generated. However all I am doing at the moment is assigning to the cells via rendertable.rowgroups(0,1).databinding.datasource = dataset rendertable.cells( 0,0)...
-
I am using the following code Dim doc as new C1PrintDocument With doc.PageLayout.PageSettings .PaperKind = Printing.PaperKind.A5 .BottomMargin = "1.50cm" .TopMargin = "1.50cm" .LeftMargin = "1.50cm" .RightMargin = "1.50cm" .Landscape = False End With ''...