Group: Shell Functions - Library: user32
Dragging files from Explorer window and dropping them on FoxPro control (requires VFP9)
VOID DragAcceptFiles(
HWND hWnd,
BOOL fAccept
);
DECLARE DragAcceptFiles IN Shell32;
INTEGER hWnd,;
INTEGER fAccept
hWnd Identifier of the window that is registering whether it will accept dropped files.
fAccept Value that indicates if the window identified by the hWnd parameter accepts dropped files.
No return value.
An application that calls DragAcceptFiles with the fAccept parameter set to TRUE has identified itself as able to process the WM_DROPFILES message from File Manager.