Format text box

  • Thread starter Thread starter Pat
  • Start date Start date
P

Pat

I want to format a text box using 0.0% When the focus is on the text box I
want to enter a value of say 5.0%, whenever I do that with the current
format 500.0% will display. This should be simple to do but it seems to
cause me difficulty.
Thanks if you can help!
Pat
 
in the forms On Open event, put this in..

Me.Text1.Value = "0.0%"

under the text field input mask put
0.0\%;0;_


I think that will do it.

kevi
 
Back
Top