Hi all
I need to be able to drag and drop multiple files from Outlook into my vb.net application.
Using e.data.GetData("FileGroupDescriptor") I can read using an IO.Stream the FileGroupDescriptor and detect the names of the files being dropped.
If I then use e.data.GetData("FileContents") using a IO.MemoryStream I can detecty the length of the file contents and then copy the contents of the first file from memory into a file. This works fine for the first file but I can't get to the FileContents of files 2,3,4 etc etc.
Is there a mechanism for accessing the index of the FileContents and hence set up the memorystream for the other files.
Your comments and help would be greatly appreciated .. it is driving me insane !!!!
John