How do i format a text box in excel user form

  • Thread starter Thread starter Martin SChukrazy
  • Start date Start date
M

Martin SChukrazy

Hi
I am looking for a way to format a text box in Excel user forms. Is
there any way to do this or do i have to use a formatted text box control
(seperate control )

Martin
 
Martin;

You can modify many f the textbox' properties by writing code in procedures,
but is this what you want ?
FI: you can set the with and hight and disable or enable it.

Could you specify your question a little bit more !!

Mark.
 
There is not formatted text box control in the msforms 2.0 set of controls.
You can use an event to change the appearance in the textbox.

as an example:
Textbox1.Text = format(Textbox1.Text,"#,##0.00")

Depends on how values get in your textbox.
 

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