Hi,
I'm using the following code to open a form on a specific record. I have a form displaying records in a list which then allows users to click onto the record to open it up in a new form in a single view.
The form opens only on the first record only and never the chosen record. Sometimes it opens the form on a new record.
I'm guessing this has something to do with filtering but not sure what i should be checking for.
Thanks.
I'm using the following code to open a form on a specific record. I have a form displaying records in a list which then allows users to click onto the record to open it up in a new form in a single view.
Code:
DoCmd.OpenForm "FRMBookingDetails", , "[BookingID] = " & Me.BookingID
I'm guessing this has something to do with filtering but not sure what i should be checking for.
Thanks.
Comment