$ in front of text in a textbox

T

Todd Huttenstine

Hey guy

I got a method from Julian Milano and Bob Phillips of how
to get the $ sign in front of text in a textbox, but there
was another method that was shorter and no matter how many
time I change the text in the textbox, the dollar sign
always stay in front. Other methods?

Thank you
 
P

Peter Atherton

Hello Todd

Is this what you were after

Private Sub TextBox1_Enter()
TextBox1.Text = "$"
End Sub

regards
Peter
 
Top