Coding Behavior entering field

  • Thread starter Thread starter news.east.earthlink.net
  • Start date Start date
N

news.east.earthlink.net

I want only one field to go to end of field when I enter it. The rest of the
database I want the default to be select all. What property do I set for
this or how can I do this.
 
I want only one field to go to end of field when I enter it. The rest of the
database I want the default to be select all. What property do I set for
this or how can I do this.

Code that control's Enter event:
Me![ControlName].SelStart = Len(Me![ControlName])
 
Excellent. Thanks!
fredg said:
I want only one field to go to end of field when I enter it. The rest of the
database I want the default to be select all. What property do I set for
this or how can I do this.

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