G
Guest
Hi all,
I have for the past few days tried to solve this by myself, no luck.
The following code is an attempt to undo the filter after opening a form
matching the "OrderID".
I want to be able to run "DoCmd.ShowAllRecords" only once.
----------------------------------------------------------------------
Dim intI As Integer
intI = 0
Do
DoCmd.ShowAllRecords
intI = intI + 1
Loop Until intI = 1
I have for the past few days tried to solve this by myself, no luck.
The following code is an attempt to undo the filter after opening a form
matching the "OrderID".
I want to be able to run "DoCmd.ShowAllRecords" only once.
----------------------------------------------------------------------
Dim intI As Integer
intI = 0
Do
DoCmd.ShowAllRecords
intI = intI + 1
Loop Until intI = 1