B
Bill Phillips
I am converting from Access 2003 to Access 2007. I have a form that has a
filter applied on After-Update as follows:
Private Sub FindItem_AfterUpdate()
FindLoc.DefaultValue = ""
DoCmd.ApplyFilter , "InvItem = Forms!Inventory!FindItem"
Me.OrderBy = "InvTag"
Forms!Inventory!cboProductSearch = Forms!Inventory!FindItem
End Sub
After I update the data I get no rows returned. I have checked my data and
made certain there wre records available for my test item. However, If I
display the menu item that is labelled "Refresh All" I get the desired
result. How do I accomplish the same task in VB?
Thanks,
Bill
filter applied on After-Update as follows:
Private Sub FindItem_AfterUpdate()
FindLoc.DefaultValue = ""
DoCmd.ApplyFilter , "InvItem = Forms!Inventory!FindItem"
Me.OrderBy = "InvTag"
Forms!Inventory!cboProductSearch = Forms!Inventory!FindItem
End Sub
After I update the data I get no rows returned. I have checked my data and
made certain there wre records available for my test item. However, If I
display the menu item that is labelled "Refresh All" I get the desired
result. How do I accomplish the same task in VB?
Thanks,
Bill