Hello everyone,
I have a listview inside UserControl.
I have written print code inside button click. But it is showing just 1st page only,
- PrintDialog prtDlg = new PrintDialog();
- if (prtDlg.ShowDialog() == true)
- {
- prtDlg.PrintVisual(listView1, "ListView");
- }
But I have to print whole data by page wise. Please help me...