码迷,mamicode.com
首页 > 其他好文 > 详细

cxGrid导出Excel货币符号问题

时间:2014-11-18 09:07:21      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   os   sp   文件   div   on   

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

在cxXLSExport.pas文件中,修改:

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;

 

cxGrid导出Excel货币符号问题

标签:style   blog   color   ar   os   sp   文件   div   on   

原文地址:http://www.cnblogs.com/GarfieldTom/p/4104843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!