View Full Version : GoToRecord(Form header to detail)


DH
02-15-2001, 04:03 AM
More than likely a simple question.

I have a combo box in Form header.When I press enter the details are shown in Form detail.On press enter how to I have the focus automatically change to a field in Form detail.

Thanks in advance

David

JCarmic
02-15-2001, 06:43 AM
On the update event of your combo box, add the code : Me!<fldname>.setfocus

DH
02-15-2001, 07:21 AM
Thank you for the quick response

Just a couple of questions,

If I already have code in the AfterUpdate can I add this code to it.

Also,how to I write the code in order to go from the Formsheader to Formsdetail.

David