D
Dunce in SC
I am having trouble getting a textbox to format user input in currency
When I use the following code
Private Sub TextBoxgencost_Change()
TextBoxgencost.Text = Format(TextBoxgencost.Text, "Currency")
End Sub
Or
Private Sub TextBoxgencost_Change()
TextBoxgencost.Text = Format(TextBoxgencost.Text, "$###,###,##")
End Sub
It will only allow me to enter 4 numbers and then behaves as a counter
and increases the last digit by one .
Thanks for the help
When I use the following code
Private Sub TextBoxgencost_Change()
TextBoxgencost.Text = Format(TextBoxgencost.Text, "Currency")
End Sub
Or
Private Sub TextBoxgencost_Change()
TextBoxgencost.Text = Format(TextBoxgencost.Text, "$###,###,##")
End Sub
It will only allow me to enter 4 numbers and then behaves as a counter
and increases the last digit by one .
Thanks for the help