OK, so now that Weblist boxes support drag and drop, how do we drag a row from lb1 to lb2?
Let’s assume both Weblistboxes have the same number of columns.
I assume as there is no dragrow, that we need to have a WebDragItem property. When the user selects the row of LB1 (the source) we need to set the row contense to the WebDragItem. Then when dropped onto LB2 (the target), we have a WebDragItem that triggers the DropObject event. where we add the row.
On Desktop, in the lb1 start drag Event I copied the RowTags of the selected row to an array. In the lb2 drag released Event I added the rows to lb2 and removed them from lb1, based upon the array.