I have a double stored in a DataTable: dt.Rows(i)(Merg eFieldName)
I want to format this and store it into a string.
I have formatting stored in a database, such as "$#,##0.00"
How do I use this formatting, apply it to dt.Rows(i)(Merg eFieldName), which
is a double, and then store it in a string?
So if the value of dt.Rows(i)(Merg eFieldName) is 14,122.05. I would get
$14,122.05.
Derek
I want to format this and store it into a string.
I have formatting stored in a database, such as "$#,##0.00"
How do I use this formatting, apply it to dt.Rows(i)(Merg eFieldName), which
is a double, and then store it in a string?
So if the value of dt.Rows(i)(Merg eFieldName) is 14,122.05. I would get
$14,122.05.
Derek
Comment