M
mscertified
When the user initially clicks in a text box I want to position the cursor to
the left, however after typing in some characters I want it to position where
it is clicked. How can I do this? My Click event code is:
If Me!Control.value = Null Then
Me!Control.selstart=0
Me!Control.sellength=0
End if
But it does not work because it appears the value is not set until I exit
the control, so it is still Null after I have typed in characters.
the left, however after typing in some characters I want it to position where
it is clicked. How can I do this? My Click event code is:
If Me!Control.value = Null Then
Me!Control.selstart=0
Me!Control.sellength=0
End if
But it does not work because it appears the value is not set until I exit
the control, so it is still Null after I have typed in characters.