Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form query -positioning the cursor on a specific field. 2

Status
Not open for further replies.

RBP

Programmer
May 5, 2001
88
GB
I have a small form based on a query.

When I click on the record navigation arrows on the bottom of the form, I'd like the cursor to go to a specific field on the form.
And not just the one that was active on the previous record.


I have tried to code this in the OnCurrent event, I can disable/enable fields in this area, but I can't get the cursor to land on a particular field.
Anyone have any pointers?

Thanks.
RBP.
 
Take a look at the Bookmark property.

Hope This Help, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884
 
Try SetFocus property

In the OnCurrent event include:

Me.txtField.SetFocus
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top