I need code for selected in datagridview and after selected print in XtraReport. This way I pick up the selected rows, what do I need next?
for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
bool isCellChecked = Convert.ToBoolean(dataGridView1.Rows[i].Cells[0].Value);
if (isCellChecked == true)
{
var allCheckedRows = this.dataGridView1.Rows.Cast<DataGridViewRow>()
.Where(row => (bool?)row.Cells[0].Value == true)
.ToList();
This solution worked fine for me in WinForms …
To select Visible in Gridview:
To show Preview form:
To Print data: