Using the duplicate button question

  • Thread starter Russ via AccessMonster.com
  • Start date
R

Russ via AccessMonster.com

I have placed a duplicate button on my form, my question is;
Is there a way to after the button has been pushed and the record duplicated
that I can set the focus to a specific field like the date field?
How would I accomplish this?
Thanks
Russ
 
M

Marshall Barton

Russ said:
I have placed a duplicate button on my form, my question is;
Is there a way to after the button has been pushed and the record duplicated
that I can set the focus to a specific field like the date field?


Just add a line of code to do that:
Me.thedatetextbox.SetFocus
 
R

Russ via AccessMonster.com

I guess I was over complicating things and thought there would be more to it,
but I guess not :)
Works great!
Thanks!
 
Top