AdvStringGrid

Hi.

I need is to save the content of AdvStringGrid inside a file. Something like 

SG1->SaveToCSV("test.csv");

but this has two problems: First, it saves cells using html formatting. How to save it using StrippedCells? Second, I would need an option to choose a delimiter between columns. Using CSV default delimiter is "," but how do I set some else?
  1. Set public property grid.SaveWithHTML = false
    2) Set delimiter with public property grid.Delimiter

Thanks.

Just one more question... is it possible to ignore first (header) row and column when saving to file?

grid.SaveFixedCells

Please see the PDF developers guide where all this is explained.

Sure will. Sorry to bother.