FNC Grid - AutoNumberCol()

Really nice feature, but would be more useful to have the option to decide in which row it starts. I don't need a 0 in the header row. Am I missing some options?


I made this patch in unit LCLTMSFNCGridData which gives me all options:

procedure TTMSFNCGridData.AutoNumberCol(Col: integer; StartRow : integer; StartValue : Integer);
var
  i: integer;
begin
  for i := StartRow to FRowCount - 1 do
  begin
    Cells[Col,i] := inttostr(StartValue);
    inc(StartValue);
  end;
end;        


Best regards

Hi, 


That is a very nice addition! We have investigated this here and applied an improvement in this area. The next version will have this included.

Thank you, I really appreciate your work.


I would like to suggest again, to offer access to your bugtracker software for registered user. That would help to avoid emails with simillar contents from differend users and gives users better informations about the current fixes and improvements.

With best regards