D
Dave Elliott
I have code on the form that accomplished what i want, but if i try and use
this same code with the pop-up form it does not work ?
Using a combo box to perform search. Combo2
i changed the comboc500 to combo2, no luck.
I would woul like very much just to create one master search form that
searches my forms for the criteria i need, but if not at least one for each
form.
Thanks,
Dave
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Order ID] = " & Str(Nz(Me![Combo500], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
this same code with the pop-up form it does not work ?
Using a combo box to perform search. Combo2
i changed the comboc500 to combo2, no luck.
I would woul like very much just to create one master search form that
searches my forms for the criteria i need, but if not at least one for each
form.
Thanks,
Dave
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Order ID] = " & Str(Nz(Me![Combo500], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark