I need to format a number like "1.2452" to show "452" So I don't want to see all numbers. The thing is, I am not able to control the display number directly, I can only format it by setting a format string of type according to the NumberFormatInfo Class. Is this possible, and if so how?
cheers
EDIT:
I found out I could subscribe to a "FormatEvent", which enabled me to make custom format as a string after the number formatting. Thanks everybody for the help and insight! :)