How can you manage to have money with a dollar sign in a textbox?

  • Thread starter Thread starter JoeP
  • Start date Start date
J

JoeP

Hi All,

How can you manage to have money with a dollar sign in a masked textbox? or
a regular textbox. I
tried enter this one in the mask propert as: $999,999.99 but it does not
work for me.

Any idea?

Thanks,

Joe
 
JoeP said:
Hi All,

How can you manage to have money with a dollar sign in a masked textbox?
or a regular textbox. I
tried enter this one in the mask propert as: $999,999.99 but it does not
work for me.

Any idea?

Thanks,

Joe
Have you tried formatting numeric value in question as currency ("C")?

You didn't tell us which .NET language you are using. This is VB

<target TextBox>.Text = <variable containing the value to be
formatted>.ToString("C")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top