I have two options in my DB...InCollection and Wishlist...its for a game collection...anyway, when the page loads its set to InCollection but if I edit a Wishlist item and hit the Save button the entire page gets stuck on Wishlist the next time I open it. I have to click on InCollection then Save to restore it. I have the code below and it does this anyway. Any help is appreciated. Thnx.
Private Sub Form_Load()
DoCmd.SetFilter [InCollection] = True
DoCmd.SetOrderBy "ConsoleName, ASC, Games, ASC"
End Sub
I've also used Me.FilterOn = True and Me.Filter = "InCollection"