B
B. Meincke
Hi all,
I have the following code to allow a zip operation to finish before moving
on in an Access 2000 form command button on_click event:
On Error Resume Next
Do Until oApp.Namespace(sZipFile).Items.Count = 1
Application.Wait (Now + TimeValue("0:00:01"))
Loop
This fails, flagging the word 'wait' with the following error reported:
Compile error:
Method or data member not found
Is this because there is an object library missing? If so, which? If not,
what else am I missing?
Thanks in advance for any advice or suggestions.
I have the following code to allow a zip operation to finish before moving
on in an Access 2000 form command button on_click event:
On Error Resume Next
Do Until oApp.Namespace(sZipFile).Items.Count = 1
Application.Wait (Now + TimeValue("0:00:01"))
Loop
This fails, flagging the word 'wait' with the following error reported:
Compile error:
Method or data member not found
Is this because there is an object library missing? If so, which? If not,
what else am I missing?
Thanks in advance for any advice or suggestions.