i noticed that, i thought maybe because you have some code some where
i usually don't have that problem
as far as the all records, the code is DoCmd.ShowAllRecords
try that
I actually got the delay to go away for awhile and now it is back...not sure what I did.
On thing on the QF_query
Here is what I use for the "TMMK-VEH" records
Code:
SELECT QREVALUE.TagNumber
FROM QREVALUE
WHERE (((QREVALUE.TagNumber)=forms![qre value]![QreValue_TMMK-VEH]!TagNumber));
and here is what I use for the All records
Code:
SELECT QREVALUE.TagNumber
FROM QREVALUE
WHERE (((QREVALUE.TagNumber)=forms![qre value]!QreValue_Open!TagNumber));
Why does the Qre_Value_TMMK-VEH need brackets and the others don't?
also I was wondering can the code get confused if I have forms and queries with the same names? Like "QreValue_Open".
on the show all records command. I just took your code and added into the "Find" button that I already had. So it resets before it looks.