Skip to content

Instantly share code, notes, and snippets.

@tablacus
Created December 17, 2019 12:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tablacus/22770d8d2781c13f13d5dfde31767b46 to your computer and use it in GitHub Desktop.
Save tablacus/22770d8d2781c13f13d5dfde31767b46 to your computer and use it in GitHub Desktop.
WM_DROPFILES - Tablacus Explorer
var Selected = FV.SelectedItems();
if (Selected.Count == 0) {
return;
}
var oExec = wsh.Exec("C:\\bin\\tanzip\\TanZIP.exe");
var hwnd = GethwndFromPid(oExec.ProcessID);
api.PostMessage(hwnd, WM_DROPFILES, Selected .hDrop, 0);
@tablacus
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment