I have a Form (FRM_SEarchMulti) with a list box (SearchResults). This list box has an ID for patient.
I have a form (FRMMeseCorrentePrestazioni) with a command button that open another form (FRMPrestazioni).
I would like to be able to open FRMPrestazioni based on the specific record of listbox SearchResults.
I used
with no success
I have a form (FRMMeseCorrentePrestazioni) with a command button that open another form (FRMPrestazioni).
I would like to be able to open FRMPrestazioni based on the specific record of listbox SearchResults.
I used
Code:
DoCmd.OpenForm "FRMPrestazioni", , , "ID = " & FRM_SearchMulti.SearchResults.ID
with no success