นำคำสั่งนี้ไปวางใน Module
Function fCopy(strDest As String, strSrc As String)
Dim fs As Object, strTime As String
Set fs = CreateObject("Scripting.FileSystemObject")
fs.copyfile strDest, strSrc, True
End Function
นำคำสั่งนี้ไปวางใน Event ที่ต้องการ ใช้ Call ....... กะได้ครับหรือเอาไปดัดแปลงตามสะดวก
Sub CopyFile
Dim fold
Set fold = CreateObject("Scripting.FileSystemObject")
newFDR = "D:\........." 'ใส่ Path ที่จะเก็บไฟลฺ์ ถ้ายังไม่มี Folder ให้สร้างใหม่ตามที่เรากำหนด
If Not fold.FolderExists(newFDR) Then
fold.CreateFolder (newFDR)
End If
fCopy "C:\pic1.jpg", "D:\pic1.jpg" 'ตัวอย่างนี้ให้ Copy รูปจาก C:\ ไป D:\ เลือกตำแหน่งใหม่ได้ตามต้องการ
End sub