Hi all,
I have a list box that has a dblclk event to open form to go to specific record. when this happens it filters the form, how do i unfilter this without having to click? I just want it to go to that record.
Code:Private Sub PartnerLst_DblClick(Cancel As Integer) DoCmd.OpenForm "CompanyFrm", , , "CompanyID= " & Me.PartnerLst.Column(1) & " " End Sub