Hi folks,
is it possible to get the number of files in a drag operation, before the execution of each one individually?
case BFM_DRAGRECEIVE:
{
KillEvents();
if(msg.GetData(BFM_DRAG_FINISHED).GetBool())
{
/* Custom handle function */
Handle_FileDrag(msg);
}
return SetDragDestination(MOUSE_NORMAL);
}
I'm currently getting multiple executions for a single drop. This isn't too much of an issue for a dozen or so files, but I'm concerned about many hundreds to 10's of thousands. The main issue is that I have to do a redraw for this operation. Is there a way around this?
WP.