underline characters with INPUT MASKS for TextBoxes

  • Thread starter John S. Ford, MD
  • Start date
J

John S. Ford, MD

I'm using Access 97. I have some TextBoxes on a form that I'm trying to
control the user's input with various input masks. My question, is there
any way of eliminating the underline characters that show up as the user is
inputting his data? Users have complained that they're kind of confusing
and I tend to agree.

John
 
R

Reggie

Replace the last part of the mask
From : 00000\-9999;;_

To : 00000\-9999;;" " (space in between quotes)
 
Top