Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.57K
1 Posted Topic
Re: int currentPage = 1; int rowsPerPage = 35; //Number of rows per page int rowIndex = 0; void pdoc_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e) { try { int x = 5, y = 5; int rowMargin = 0; int rowCount = dgvHesaab.Rows.Count; int pageCount = (int)Math.Ceiling((double)(rowCount / rowsPerPage)); for (int j = … |