conveting integers into currency

  • Thread starter Thread starter Dave Cool
  • Start date Start date
D

Dave Cool

I would like to have the ability for folks to enter a
currency amount as 1599 in a text box on a form and have
code convert it to $15.99 How would I do this?
 
Dave said:
I would like to have the ability for folks to enter a
currency amount as 1599 in a text box on a form and have
code convert it to $15.99 How would I do this?


Divide by 100 (in the text box's AfterUpdate event) and set
the format property to Currency.
 
Back
Top