vote up 2 vote down star

I am using a DBGrid component in delphi. I wonder how I can set the format of a column. I have real values that I want to be displayed as currency in the grid.

Someone knows how?

flag

3 Answers

vote up 4 vote down check

(1) You can Set the DisplayFormat of Field.
(2) You can change too, in the OnGetText event. At this you can do more complex operation with the value.

Excuse-me for my bad english.

NeftalĂ­.

link|flag
Your english is probably as good as mine :-) – Blue Oct 16 '08 at 14:59
vote up 1 vote down

If you don't add the fields to field Editor list you can get the formating by code as :

TFloatField(MyQuery.fieldByName('MyField').DisplayFormat := '0.00';

if you don't want to show the zeros replace '0.00' with '#.##';

link|flag
vote up 2 vote down

The first port of call is the DisplayFormat of the data field in the database itself.

link|flag
I've set the column type to decimal(20,2) in my old MySql 4.1 database. Trailing zeros are not shown in the DBGrid. Is there something else to set? – Blue Oct 16 '08 at 14:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.