set input text as uppercase

  • Thread starter Thread starter Guest
  • Start date Start date
You can do this with the Format property of the control,
just set the Format to >. However, this won't actually
capitalize the data, it will just make it that way when you
look at it. To actually change the data, in the AfterUpdate
event of the control try:

Me.ActiveControl=UCase(Me.ActiveControl)

Jim
 
Back
Top