Form

L

Linda_Montreal

Hi all,

I am building my form and in it there are 5 boxes to fill in. Once I get to
the last box and put the info in I click at the bottom for next entry, but my
curser always stays in the last box from the previous entry. I have to click
it back at the beginning box. How can I get it to go there each time I want
a new entry.

Thanks in advance,
L.
 
D

DevalilaJohn

In the appropriate event (e.g. After Insert or After Update) add
<box1>.setfocus

where you would substitute the control name for <box1>
 
Top