I have a problem dragging from 1 txbrows to another.
I have found somewere in this forum a example from NageswaraRao with this code:
- Code: Select all Expand view
STATIC FUNCTION DropOver1( uDropInfo, nRow, nCol, nFlags, oBrw )
oBrw:lButtonDown( nRow, nCol, nFlags)
oBrw:lButtonUp( nRow, nCol, nFlags)
...
RETURN NIL
The problem is that this function only select te dropped cell if you drag the same txbrowse. Dragging it to another, the dropper cell is not selected but still the one that was selected before. I allready tried to add
- Code: Select all Expand view
obrw:setfocus()
in the beginning of the function, but it doesn't work.
Is there a solution for this?
Thanks,
Marc