DaveXP Posted October 10, 2004 Posted October 10, 2004 Hey, can anyone tell me wat the code is to make a button which can copy files from one place to anotherThanks
jdoe Posted October 10, 2004 Posted October 10, 2004 Private Sub Command1_Click() Dim fso As Object Set fso = CreateObject("Scripting.FileSystemObject") fso.CopyFile "C:\*.TXT", "D:\DESTINATION\"End Sub
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now