Let's say I have a ListView with items in it, and I set it OLEDragMode to automatic. If I drag any of this items into a simple exe which code's is:
I get no message at all. How do I get the dragged item to actually drop a command line on this exe... for starters.VB Code:
Option Explicit Private Sub Form_Load() MsgBox Command$ End End Sub
The idea is to have the full path in the CommandLine and when it's dropped, the file would be copied into that location (Desktop, Folder, whatever)
