I have a form based on a query that used this subroutine
When a user changes one of several combo boxes I execute this
Everything has been fine until I changed linked tables to Pass-Though Queries. Now it WON'T update.
Oddly enough the Combo boxes do, but not the form's recordset.
So I select a combo box that filters the form from 1000 records to 3. The Combo box now shows three records and the from still shows 1000???
Help??? How do I get the form to upate?
Code:
Public Function fCboSearch(vCboSearch As Variant)
If IsNull(vCboSearch) Or vCboSearch = "" Or vCboSearch = "<Select All>" Then
fCboSearch = "*"
Else
fCboSearch = vCboSearch
End If
End Function
When a user changes one of several combo boxes I execute this
Code:
Me.Requery
Everything has been fine until I changed linked tables to Pass-Though Queries. Now it WON'T update.
Oddly enough the Combo boxes do, but not the form's recordset.
So I select a combo box that filters the form from 1000 records to 3. The Combo box now shows three records and the from still shows 1000???
Help??? How do I get the form to upate?