New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.protected override void OnPrintPage(PrintPageEventArgs ev) { base.OnPrintPage(ev); if(!ev.HasMorePages) { //set where you want the second grid displayed... int width = grid2.Model.ColWidths.GetTotal(0, grid2.Model.ColCount); int height = grid2.Model.RowHeights.GetTotal(0, grid2.Model.RowCount); Rectangle botGridRect = new Rectangle(ev.MarginBounds.Left, ev.PageBounds.Height/2, width, height); grid2.DrawGrid(ev.Graphics, botGridRect, false); //botGridRect.Inflate(1,1); ev.Graphics.DrawRectangle(Pens.Black, botGridRect); } }