Hi
Remember my question a week or so ago...I have a form with every field locked and disabled except one. When the user enters the form all the text from that one field is highlighted...thereby if a user hits any key all the text is gone. I have found a way to have the cursor go to the beginning of the line, but I want it to go to the end of the line and rest there.
here's my code:
Private Sub ProblemDescription_Enter()
ProblemDescription.SelStart = 0
ProblemDescription.SelLength = 0
End Sub
how can I change this so the curser rests at the end of the line instead of at the beginning?
Thanks!
Amy
Remember my question a week or so ago...I have a form with every field locked and disabled except one. When the user enters the form all the text from that one field is highlighted...thereby if a user hits any key all the text is gone. I have found a way to have the cursor go to the beginning of the line, but I want it to go to the end of the line and rest there.
here's my code:
Private Sub ProblemDescription_Enter()
ProblemDescription.SelStart = 0
ProblemDescription.SelLength = 0
End Sub
how can I change this so the curser rests at the end of the line instead of at the beginning?
Thanks!
Amy