Re: decimalseparator problem
profgrid.com

Hello Rob,
This specific problem appears on Dutch locale.
Try to patch the procedure DoVarCast as follows.
Lines 4361 thru 4365 (ProfGrid.pas version 3.4.4.8), which are currently
------
if TryStrToFloat(WS, D) then
begin
Dest := vargDest;
Exit
end;
------
should be changed to
------
if TryStrToFloat(WS, D) then
begin
if D <> vargDest then
Dest := D
else
Dest := vargDest;
Exit
end;
------
-Nicholas