format() a text box

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

I have a text box that displays a date (9-29-04). I only want the day value
to show (29). But I do not want to alter the ".Value" of the textbox. How
do I do this?
 
Set the Format property of the text box to:
d

The box will show just the day number, until it receives focus.
Then the full date will show, so that the user can make the entry correctly.
 
thank you
Allen Browne said:
Set the Format property of the text box to:
d

The box will show just the day number, until it receives focus.
Then the full date will show, so that the user can make the entry correctly.
 
Back
Top