EXCEL TOOLS
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
[code]
และปิดด้วย [/code]
ตัวอย่างเช่น [code]dim r as range[/code]
เพื่อให้แตกต่างจากข้อความทั่วไป สะดวกในการอ่านและทดสอบ (คลิกเพื่อดูตัวอย่างเพิ่มเติม)Code: Select all
Public Sub CopyFileToNewDes()
Dim strSQL As String
Dim rst As DAO.Recordset
Dim strNewPath As String
Dim FSO As Object
strSQL = "SELECT [sFol] & [FileName] AS FullPath, temCopyList.FileName " & _
"FROM temCopyList INNER JOIN sFolder ON temCopyList.ID = sFolder.CopyListID;"
Set rst = CurrentDb.OpenRecordset(strSQL)
Do While Not rst.EOF
Set FSO = CreateObject("Scripting.FileSystemObject")
strNewPath = "C:\tempDwg\"
FSO.CopyFile (rst!FullPath), strNewPath & rst!FileName, True 'Copy and paste file to destination folder
Set FSO = Nothing
rst.MoveNext
Loop
MsgBox "Move File Successful", vbInformation
rst.Close
Set rst = Nothing
End Sub