S
sandal
I have an app that needs to copy files over a vpn in the background. I'm
finding FileCopy pretty much takes over when it's running, user
interaction with the interface is relegated to some lower priority. I
want the file copy operation to take place in the background.
The FileCopy operation runs periodically via a form timer event. I've
tried DoEvents and it didn't seem to help. I found that running the
filecopy operation in a separate instance of Access made things a lot
smoother, probably because windows is better at sharing the cpu than
Access is.
Is there any way in code that I can get FileCopy, or the
FileSystemObjects method like it, to work in the background? I don't
wish to split the file copy operation into a separate Access file if I
can help it.
finding FileCopy pretty much takes over when it's running, user
interaction with the interface is relegated to some lower priority. I
want the file copy operation to take place in the background.
The FileCopy operation runs periodically via a form timer event. I've
tried DoEvents and it didn't seem to help. I found that running the
filecopy operation in a separate instance of Access made things a lot
smoother, probably because windows is better at sharing the cpu than
Access is.
Is there any way in code that I can get FileCopy, or the
FileSystemObjects method like it, to work in the background? I don't
wish to split the file copy operation into a separate Access file if I
can help it.