Im trying to setup a form with a listbox. I want to be able to double-click on an item in the listbox and open up a form (frmIndServReq) with the selected record according to the address that was highlighted in the listbox. Im working with this but am having no luck. The address is text, not numbers.
DoCmd.OpenForm "frmIndServReq", , , "[ServReq Query.Address] ='" & "'" & Me.lstServReq.Column(1) & "'"
Any suggestions?
DoCmd.OpenForm "frmIndServReq", , , "[ServReq Query.Address] ='" & "'" & Me.lstServReq.Column(1) & "'"
Any suggestions?