Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Keep program active

Status
Not open for further replies.

Learning123

Programmer
Joined
May 12, 2002
Messages
29
Location
US
Hi everyone!
I was wondering if there is a way to keep my program active when it's processing a file. Basically, my program copies a file that is about 200mbs everyday at 2:00 PM. the code is:

Sub CopyFiles()
Set CopyItem = CreateObjec("Scripting.FileSystemObject") CopyItem.CopyFile "C:\Development.vrx", "E:\Production\", True
End Sub

Everytime it begins to copy the program doesn't accept any commands until it's done. Is there anyway to keep the program active? Any suggestions are thank-fully welcome. Much thanks again!
 
Check out multi Threading.. www.vzio.com
ASP WEB DEVELOPMENT



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top