Hi,
Im using the following code to change text format to Capitals.
"production plan"
"PRODUCTION PLAN"
If KeyAscii > 96 And KeyAscii < 123 Then
KeyAscii = (KeyAscii And 223)
End If
End Sub
Is there any other way of coding so that it will only change the Firts letter to Capital format. It will look much neater and also easier for the client to read and in the same breath make the typing faster.
"Production Plan" is better than
"PRODUCTION PLAN"
Thanks
eon5
Im using the following code to change text format to Capitals.
"production plan"
"PRODUCTION PLAN"
If KeyAscii > 96 And KeyAscii < 123 Then
KeyAscii = (KeyAscii And 223)
End If
End Sub
Is there any other way of coding so that it will only change the Firts letter to Capital format. It will look much neater and also easier for the client to read and in the same breath make the typing faster.
"Production Plan" is better than
"PRODUCTION PLAN"
Thanks
eon5