Hey everyone, i need help about this please..
So how can I display numeric value 3 as 003 or 10 as 010?
It's an Int value, how do i set it up?
Add something on BeforePrintEvent? Format data display? How?
Thanks in advance!
Merci,
Cc
Displaying Numeric value i.e. 3 as 003
Displaying Numeric value i.e. 3 as 003
You could use something like:
{int.Parse("10").ToString("000")}
in the text property.
This will show as 010.
{int.Parse("10").ToString("000")}
in the text property.
This will show as 010.
Displaying Numeric value i.e. 3 as 003
Thanks mace242 it worked well!