Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_vb_dotnet thread: Money: Currency Format


Message #1 by "Robert Sindall" <rsindall@z...> on Wed, 18 Sep 2002 15:42:44 +0100
instead of:
Price.Text = String.Format("{0:c}", Products.Price)


try using something more custom:

Price.Text = Format(CDec(Products.Price), "$###,##0.00")

that way, your not relying on the computer format



  Return to Index