Bob,
Below is some code I copied out of one of my forms
where selected record fields from a query are displayed.
When the user double-clicks in the record selector area
that lays alongside the continuous forms detail section,
I switch to a form that has all the detail relating to that
record.
Not exactly what Ken suggested, but close to it.
Bill
Private Sub Form_DblClick(Cancel As Integer)
'===================================================================
'User has double-clicked upon the record selector adjacent to either
'a family name or a new "blank" table entry at the bottom of the
'table form.
'===================================================================
Dim frm As String
frm = "Family Details" 'Set the name for
Family details
If IsNull(Me.[FamilyName]) Then
DoCmd.OpenForm frm, , , , acAdd, , "NewEntry" 'Add a new family
Else
DoCmd.OpenForm frm, , , , acFormEdit, , Me.[FamilyID] 'Display
current family details
End If
End Sub