cxGrid导出Excel货币符号问题

cxGrid导出到Excel,对于Currency类型老是加上了货币符号,能够修改导出文件设置来去掉:ide

在cxXLSExport.pas文件中,修改:spa

procedure TcxXLSExportProvider.SetCellDataCurrency(const ACol, ARow: Integer;
  const AValue: Currency);
begin
  if xlsCheckPos(ACol, ARow) then
    //FCells.SetCellDataCurrency(ACol, ARow, AValue);
    FCells.SetCellDataDouble(ACol, ARow, AValue);
end;
相关文章
相关标签/搜索