TAdvStringGrid - AddFromCSV?

Hi,

To load rows from CSV file I use LoadFromCSV function. But, this function deletes all current rows before loading CSV. So, how do I add data (rows) from CSV without deleting currently existing rows?

You can use grid.InsertFromCSV(),instead of LoadFromCSV, to add CSV files to existing information in the grid. This is also explained in the developers guide at page 11: http://www.tmssoftware.biz/download/manuals/TMS%20TAdvStringGrid%20Developers%20Guide.pdf

Thanks!