|
|
Clarion 6 - General
Started by dEraCh2000 at 08-15-2008 1:19 AM. Topic has 1 replies.
 
 
|
|
Sort Posts:
|
|
|
|
08-15-2008, 1:19 AM
|
dEraCh2000

Joined on 04-30-2008
Sarajevo, B&H
Posts 11
|
|
|
|
Hello,
I'm trying to use the drag and drop functionality. I'm using a listbox and acouple of regions. The problem is, when I start to drag an item from the listbox and then use cursor key to scroll down(or up) the droped item is not the one I draged, it's the currently selected one in the listbox.
Is there a way to prevent this?
Kind regards
Armin
|
|
|
|
|
Report
|
|
|
|
08-15-2008, 5:52 AM
|
Tony Tetley

Joined on 10-25-2005
Missouri, USA
Posts 80
|
|
|
Armin,
You need to save the row when the drag starts. Something like:
OF EVENT:Drag DragFromRow = Choice(?Browse:1)
If you want to know what row you are on when the drop occurs use something like this:
OF EVENT:Drop DragToRow = ?Browse:1{PropList:MouseUpRow}
HTH, Tony
|
|
|
|
|
Report
|
|
|
|
|
Clarion Communi... » Clarion » Clarion 6 - Gen... » Drag and Drop
|
|
|
|