Coding Behavior entering field

  • Thread starter news.east.earthlink.net
  • 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.
 
F

fredg

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

news.east.earthlink.net

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