Help With TextBox Formatting

  • Thread starter Thread starter Minitman
  • Start date Start date
M

Minitman

Greetings,

I would like to format Textbox1 on UserForm1 with the PROPER format
but I can't find any examples of how this is done.

Can anyone show me how?

TIA

-Minitman
 
Hi Minitman,

Try:

Private Sub TextBox1_Change()
Me.TextBox1.Text = Application.Proper(Me.TextBox1.Text)
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top