Hi, I have inherited a database that includes the ability to upload files to a remote server through the interface. The code for this is fairly straightforward and uses FSO. The key function call being:
fso.CopyFile (sfol & file), (dfol & strName), True
Anyway, this causes errors when users start doing more with the database before the file is done uploading. So how can I add a progress bar or wait dialogue that knows when the file is done uploading?
fso.CopyFile (sfol & file), (dfol & strName), True
Anyway, this causes errors when users start doing more with the database before the file is done uploading. So how can I add a progress bar or wait dialogue that knows when the file is done uploading?