Textbox with currency format

C

C. Thies

Hi

I can't get my textbox to show me formatted numbers ( 1,000,000.75)
How can I do that?

Thanks

Christian
 
D

David Adamson

Private Sub StartValue_Change()
'format data
StartValue = Format(StartValue, "$###,##0")

End Sub
 
Top