set focus

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
 
F

fredg

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])
 
Top