Subject Re: RowNum
Author arnofab2000
Hi Jason.

this code:

procedure TFAr.SQLOccorrenzeCalculateField(Sender: TIB_Statement;
ARow: TIB_Row; AField: TIB_Column);
begin
if AField.FieldName = 'CTR' then
AField.AsInteger := SQLOccorrenze.BufferRowNum;
end;


is an attempt to write the RowNum of a record in the most left cell of
a TIB_Grid.

CTR is a calculated Field.

Thanks

Arn