I would like to have a field convert the text typed to all capitals
D Dirk Goldgar Oct 11, 2004 #2 AyseG said: I would like to have a field convert the text typed to all capitals Click to expand... The simplest way is have a procedure for the AfterUpdate event of the text box. For example, Private Sub txtMyTextBox_AfterUpdate() With Me!txtMyTextBox .Value = UCase(.Value) End With End Sub
AyseG said: I would like to have a field convert the text typed to all capitals Click to expand... The simplest way is have a procedure for the AfterUpdate event of the text box. For example, Private Sub txtMyTextBox_AfterUpdate() With Me!txtMyTextBox .Value = UCase(.Value) End With End Sub