Skip to content

Instantly share code, notes, and snippets.

@tablacus
Last active May 26, 2023 04:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tablacus/4d3a6957d96d7a65d2c80920d72ea006 to your computer and use it in GitHub Desktop.
Save tablacus/4d3a6957d96d7a65d2c80920d72ea006 to your computer and use it in GitHub Desktop.
Move selected items to c:\test - Tablacus Explorer
var FV = GetFolderView(Ctrl, pt);
var Selected = FV.SelectedItems();
if (Selected && Selected.Count) {
var DropTarget = api.DropTarget("c:\\test");
DropTarget.Drop(Selected, MK_LBUTTON | MK_SHIFT, pt, Selected.pdwEffect);
}
@tablacus
Copy link
Author

image

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