set focus

  • Thread starter Thread starter Simon
  • Start date Start date
S

Simon

I have a some code that set focus how ever it puts the currsor it
begening of text is there a away to set focus to end the text in the
text box
 
I have a some code that set focus how ever it puts the currsor it
begening of text is there a away to set focus to end the text in the
text box

Code that Control's Enter event:
Me.[ControlName].SelStart = Len(Me.[ControlName])
 
Back
Top