Scott_10 0 Newbie Poster

Hello! We usea third-party program that permanently saves our files. To save the files, we must drag each file into the window of their program and it uploads and saves the file.

I need to add over 1,000 files each quarter, so I started looking into automating the proess.

The VB.net program now has a list of files (with their full path). Is there a great way to simulate the drag and drop of each file without moving the mouse? I was able to do it with mouse commands (find the file in Explorer, left click, move the mouse to the third-party window, left unclick). I'm wondering if better way might be to use a call to SHDoDragDrop. It looks like SHDoDragdrop would probably do what I want, but I could not find a VB.net working example.

Thanks!