'Simple code for convert text to UPPERCASE
'Simple code for convert text to UPPERCASE
Rate 'Simple code for convert text to UPPERCASE
(1(1 Vote))
Dim pos As Long
If Len(txtCtrl(Index)) >= 1 Then
pos = txtCtrl(Index).SelStart
txtCtrl(Index) = UCase(txtCtrl(Index))
txtCtrl(Index).SelStart = pos
End If
end sub
'Simple code for convert text to UPPERCASE Comments
No comments yet — be the first to post one!
Post a Comment