It looks like you're new here. If you want to get involved, click one of these buttons!
Concerning LMDshelllist
I am facing the following problem.
It can be easily reproduced with the demo LMDfilemanager.
However,
after a viewstyle change, it becomes impossible to drag files into the
folder.
Whatever
the viewstyle.
Comments
Anyway: If for some reason Drag&Drop does not work, simple RecreateWnd call (to recreate handle - this is the place where RegisterDrop method is called) should be sufficient.
My version of the Shellpack is 2013
My OS is Windows 7 Prof 32b
Do you mean a recreatewnd call of the form which contains the LMDshelllist component? This works, but it is rather annoying.
Thanks, but I figured out that for two-way drag&drop you first have to reset the drop option, as follows.
lmdshelllist1.Options:= lmdshelllist1.Options -[loallowdrop];
SendMessage(lmdshelllist1.Handle, CM_RECREATEWND, 0, 0);
lmdshelllist1.Options:= lmdshelllist1.Options +[loallowdrop];