Setting Focus

G

Guest

I’m using Access 2002 and Sql 2000.

I have a form frmOfficeMovesEntry and a sub form frmOfficeMovesSub.

Within the frmOfficeMovesSub I have a MoveTo field. MoveTo has an After
Update event that that asks if you want enter another move.

My problem is when No is selected. I’m trying to set the focus to a
VerbalApproveBy field that’s on the frmOfficeMovesEntry form.

I’ve tried Me!frmOfficeMovesEntry!VerbalApproveBy.SetFocus along with other
modifications but I can’t get anything to work.

Can anyone please tell me what I’m doing wrong?

Thanks,

Paul
 
G

Guest

One of these should do it for you:
Me!Parent!VerbalApproveBy.SetFocus
Or
Forms!frmOfficeMovesEntry!VerbalApproveBy.SetFocus
 
G

Guest

Got the second option to work. I guess I tried everything but that.

Thanks for the help,

Paul
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top