FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour drop file to xBrowse
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
drop file to xBrowse
Posted: Mon Nov 24, 2025 10:39 AM

Hi,

I need to drag and drop file from explorer to xBrowse (oBr:bDropOver does not work). How can I do this?

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: drop file to xBrowse
Posted: Mon Nov 24, 2025 12:16 PM

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 nil
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
Re: drop file to xBrowse
Posted: Mon Nov 24, 2025 12:36 PM

Thanks for what I need!

Continue the discussion