C
Chris Kudron
In addition to this message sent earlier. How do you
always capitalize only the first letter in a field?
*************************************************
How do i use the UCase to make a field uppercase only?
In addition to the other solutions offered, you can also
force the entries to
upper case as they are typed from within the
control's "KeyPress" event
procedure:
'**********
Private Sub txtUpper_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
*******************************************************
always capitalize only the first letter in a field?
*************************************************
How do i use the UCase to make a field uppercase only?
In addition to the other solutions offered, you can also
force the entries to
upper case as they are typed from within the
control's "KeyPress" event
procedure:
'**********
Private Sub txtUpper_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
*******************************************************