I've found the answer to my 1st question, now only to restrict certain files.
for the people who want to know how:
Code:Imports System.IO If e.Data.GetDataPresent(DataFormats.FileDrop) Then Dim Files() As String Files = e.Data.GetData(DataFormats.FileDrop) Dim sReader As New StreamReader(Files(0)) Dim file_name as String = Path.Getfilename(Files(0)) msgbox(file_name)





Reply With Quote