Hi
Is there a way you can move the cursor past what is entered
in the texbox so that any future typing will be added to
what is already there.
Private Sub Tbox_Brand_Change()
If Trim(Tbox_Brand) <> "" Then
If Len(Trim(Tbox_Brand)) = 1 Then
Tbox_Brand = StrConv(Trim(Tbox_Brand), vbUpperCase)
? Move cursor to right of capitalized leter ?
End If
end if
end sub
Thanks
Mike
Is there a way you can move the cursor past what is entered
in the texbox so that any future typing will be added to
what is already there.
Private Sub Tbox_Brand_Change()
If Trim(Tbox_Brand) <> "" Then
If Len(Trim(Tbox_Brand)) = 1 Then
Tbox_Brand = StrConv(Trim(Tbox_Brand), vbUpperCase)
? Move cursor to right of capitalized leter ?
End If
end if
end sub
Thanks
Mike