hello guys,
i made a datasheet form with a selected number of fields. but you can doubleclick each record to go into the detailed record form. in the first two fields i put in this...
that the form will be openend in exactly the correct record to show the detailed form. BUT this is a filter. so i cant cruise between the other records in the detailed form. is there any "docmd"-command which doesnt make a filter but opens just on the right record, so i can go up and down the records without the need of deleting the filter first?
i made a datasheet form with a selected number of fields. but you can doubleclick each record to go into the detailed record form. in the first two fields i put in this...
Code:
Private Sub Field1_DblClick(Cancel As Integer)
DoCmd.OpenForm "Detailed Form", , , "[Tdate] = #" & [Tdate] & "#"
End Sub
Comment