Numbers as text in a TAdvStringGrid

Hi


I've been trying to put e.g. 1,4 into a cell, and all I get is '1'. I've tried prefixing it with a single quote, but that didn't make any difference.

How do I do it?

thanks

stephen



As this can't be reproduced with a default grid with setting via:

  advstringgrid1.Cells[1,1] := '1.4';
or
  advstringgrid1.Floats[1,2] := 1.4;

I assume you changed grid.FloatFormat and use grid.Floats[] ?
grid.FloatFormat specifies the format to use for values added via grid.Floats[]