D
Derek Hart
I have a double stored in a DataTable: dt.Rows(i)(MergeFieldName)
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)(MergeFieldName), which
is a double, and then store it in a string?
So if the value of dt.Rows(i)(MergeFieldName) 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)(MergeFieldName), which
is a double, and then store it in a string?
So if the value of dt.Rows(i)(MergeFieldName) is 14,122.05. I would get
$14,122.05.
Derek