• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How do you format a string as currency to display in a text box?

GoingUp

Lifer
I am trying to format a string that I get out of a database to currency to show up in a text box. Ideas?

Edit: The only thing I can find is how to do it with a console and not with a text box.

here is what I currently have.

txtsubtotal.Text = Reader(3).ToString
txttaxes.Text = Reader(4).ToString
txtship.Text = Reader(5).ToString
txttotal.Text = Reader(6).ToString
txtstatus.Text = Reader(7).ToString
txtcomments.Text = Reader(8).ToString

the totals should be as currency.
 
Back
Top