Tengo en c++ builder un formulario con un QREport para elaborar un informe.
Necesito declarar la variable i y no se donde. Espero q me ayudeis.
void __fastcall TForm3::qr1NeedData(TObject *Sender, bool &MoreData)
{
MoreData=i<Form1->sg->RowCount;
if (MoreData){
QRLabel1->Caption=Form1->sg->Cells[1]
;
QRLabel2->Caption=Form1->sg->Cells[2];
QRLabel3->Caption=Form1->sg->Cells[3];
QRLabel4->Caption=Form1->sg->Cells[4];
QRLabel5->Caption=Form1->sg->Cells[5];
QRLabel6->Caption=Form1->sg->Cells[6];
QRLabel7->Caption=Form1->sg->Cells[7];
}
i++;
}