Delphi DBGrid Format Display Values

后端 未结 2 695
眼角桃花
眼角桃花 2021-01-20 14:55

I need to format values in a DBGrid to display in a certain format ex \'#,##0.00\'. Any idea how to do that?

Regards, Pieter

2条回答
  •  暖寄归人
    2021-01-20 15:21

    Each Field in your DataSet has two events: OnGetText and OnSetText. Use event OnGetText of desired fields and use Format function to format the value using a mask.

提交回复
热议问题