ใช้ Application.GetOpenFilename ไปโฟลเดอร์เป้าหมาย
Posted: Fri Apr 05, 2024 4:55 pm
จากไฟล์ที่แนบมา
ต้องการไปยังโฟลเดอร์ที่เก็บไฟล์ไว้ (โฟล์เดอร์อยู่ใน Drive C: ชื่อว่า Teacher)เพื่อเลือกไฟล์มาใช้งาน
จะต้องปรับโค๊ดอย่างไรครับ
ต้องการไปยังโฟลเดอร์ที่เก็บไฟล์ไว้ (โฟล์เดอร์อยู่ใน Drive C: ชื่อว่า Teacher)เพื่อเลือกไฟล์มาใช้งาน
จะต้องปรับโค๊ดอย่างไรครับ
Code: Select all
Sub openFolder()
Dim fileToOpen As Variant
Dim fileFilterPattern As String
Application.ScreenUpdating = False
fileFilterPattern = "Excel Files (*.xls; *.xlsx),*.xls;*.xlsx ,Text Files (*.txt; *.csv),*.txt;*.csv"
fileToOpen = Application.GetOpenFilename(fileFilterPattern)
If fileToOpen = False Then
MsgBox "คุณไม่ได้เลือกไฟล์ที่จะนำเข้า", vbOKOnly + vbInformation, "ยกเลิกการนำเข้าข้อมูล"
Exit Sub
End If
End Sub