I used to have an Access button that would reset my form after a search.
I must have done something to make the button not work now.
I have 19,000 form records when I start. I hit a different button that gets me a particular TripID.
Then I get correctly 42 records. When done, I would like to hit my Reset button and get back
my 19,000 records.
I previously had an On Click of :
Private Sub cmdRESET_Click()
Me.FilterOn = False
End Sub
Tonight, I read other people's comments and internet places and added a Requery line above the end sub.
But still does nothing. Now I have :
Private Sub cmdRESET_Click()
Me.FilterOn = False
Me.Requery
End Sub
Any ideas? Thanks much.
I must have done something to make the button not work now.
I have 19,000 form records when I start. I hit a different button that gets me a particular TripID.
Then I get correctly 42 records. When done, I would like to hit my Reset button and get back
my 19,000 records.
I previously had an On Click of :
Private Sub cmdRESET_Click()
Me.FilterOn = False
End Sub
Tonight, I read other people's comments and internet places and added a Requery line above the end sub.
But still does nothing. Now I have :
Private Sub cmdRESET_Click()
Me.FilterOn = False
Me.Requery
End Sub
Any ideas? Thanks much.