Agregar informe de recuento de filas DEVEPXRESS
int counter = 0;
private void lblCount_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e)
{
counter++;
lblCount.Text = counter.ToString();
}
Stratocaster