Ok so I solved it now with this...
Private Sub SectionNo_DblClick(Cancel As Integer)
Dim MapNo As String
MapNo = Form_SectionSheetMap.SectionNo
On Error GoTo clickError
Forms!SectionSheet!SectionNo.SetFocus
DoCmd.GoToRecord acActiveDataObject, , acFirst, no
DoCmd.FindRecord MapNo, acEntire, no, acSearchAll, no, acCurrent, no
clickError:
Resume Next
End Sub
This works a treat for wanting to jump to the record in the main form from a
subform.
All I need to know how to do now is point 2.
Move the current record in the subform (Continuous form) along with the
main form so that it scrolls along keeping the record in the subform in view.
I do not want it fixed to the main form (IE you can still scroll up and down
independantly using the scroll bar) Also highlighting on making the font in
the PK show so you see the matching reocrds quickly.
Any help appreciated.
Thanks
Andi
> Hi,
>
[quoted text clipped - 47 lines]
>
> Andi