Hi I am using String.Format("{0:C2}", -1234)
to format numbers.
is always formats the amount to a positive number, while I want it to become $-1234
|
|
Hi I am using String.Format("{0:C2}", -1234) to format numbers. is always formats the amount to a positive number, while I want it to become $-1234
|
|||
|
|
|
|
I think I will simply use:
(in Microsoft.VisualBasic.Strings module) Or in shorter words (this is what im actually going to use):
Or I will make myself a custom formatcurrency function that uses the VB function passing my custom params. For further details take a look at the FormatCurrency Function (Visual Basic) in the msdn. |
|||
|
|
|
|
Am I right in saying it's putting it in brackets, i.e. it's formatting it as However, you can create your own For example:
This prints $-1,234.00. If you actually want exactly $-1234, you'll need to set the EDIT: Here's a helper method you can use which basically does the same thing:
|
||||||||||||||
|