I use Fwh 15.07 and harbour 3.2.0dev(r1506171039) and msvc 2013.
I have tried testdrop.prg in sample directory. And there is no problem. It works.
I have tried in my application like this. First of all, I use in DIALOG.
- Code: Select all Expand view
- @ 60, 10 LISTBOX oLbx2 var cItem OF oDlg PIXEL;
ITEMS {} size 60,60
oLbx2:bDropOver = { | uDropInfo, nRow, nCol, nKeyFlags | ;
IICBELGE_Drag( uDropInfo ), MsgBeep() }
FUNCTION IICBELGE_Drag(aFiles)
? "I AM HERE"
RETURN
I can compile my app with above lines. But When I drag and drop a file to mt LISTBOX. There is no "I AM HERE" message.
Is there a way to activate drag and drop facilities in application.
Thanks