Textbox formating

  • Thread starter Thread starter JK
  • Start date Start date
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"
 
Back
Top