$ in front of text in a textbox

  • Thread starter Thread starter Todd Huttenstine
  • Start date Start date
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
 
Hello Todd

Is this what you were after

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

regards
Peter
 
Back
Top