Hi everyone,
I have allowed drag&drop on my main form, and it's working totally fine on Debian (KDE and Gnome) and Windows 7, however on Windows 8 and Server 2012 it just seems that the procedure TForm1.FormDropFiles() is never called. In order to test I have changed mine as follow:
procedure TForm1.FormDropFiles(Sender: TObject; const FileNames: array of String
);
begin
showmessage(FileNames[0]);
end;
And I just can't get anything on Win 8. Anyone ever experienced such a problem?
Thanks for the help!