Hi,
I need to drag and drop file from explorer to xBrowse (oBr:bDropOver does not work). How can I do this?
Hi,
I need to drag and drop file from explorer to xBrowse (oBr:bDropOver does not work). How can I do this?
Dear Yuri,
Here you have a working example:
#include "FiveWin.ch"
function Main()
local aData := { { 10000, 235000, 90, 2115 } }
XBROWSER aData SETUP BrwSetup( oBrw )
return nil
function BrwSetup( oBrw )
oBrw:bDropFiles = { | nRow, nCol, aFiles | XBrowser( { nRow, nCol, aFiles } ) }
return nilThanks for what I need!