Ola,
1) I'm dragging a file (.txt) into a rtb which works fine, but how do I get the filename? (messagebox whatever)
2) How do I restrict files to drop? (like a .exe)
vb.net Code:
If e.Data.GetDataPresent(DataFormats.FileDrop) Then Dim Files() As String Files = e.Data.GetData(DataFormats.FileDrop) Dim sReader As New StreamReader(Files(0))
Thanks in advance.





Reply With Quote