Textbox formating

S

Stuart McCall

JK said:
I am trying to format a text box as a MMYYYY format.
How and where do I do this?

Either in the textbox's Format property (at design time), or via code:

Me.TextboxName.Format = "MMYYYY"
 
Top