ผมอยากที่จะหา นามสกลไฟล์ ที่ Drop Enter เอามาครับ
คำสั่งที่ใช้ แต่มันเป็นที่อยู่ไฟล์ ไม่ใช่ นามสกุลไฟล์ครับ
Code (VB.NET)
Private Sub CBP_Drop(sender As Object, e As DragEventArgs) Handles CBP.Drop
Dim files() As String = e.Data.GetData(DataFormats.FileDrop)
For Each path In files
MsgBox(path)
Next
End Sub