TListBox Drag and Drop problems with MultiSelect enabled - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T08:11:31Zhttp://stackoverflow.com/feeds/question/192960http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192960/tlistbox-drag-and-drop-problems-with-multiselect-enabled2TListBox Drag and Drop problems with MultiSelect enabledMark Elder2008-10-10T20:44:05Z2009-02-06T16:38:28Z
<p>I have a TListBox with multiselect and ExtendedSelect both set to true. I need to be able to drag multiple items in the list box to re-arrange them. My problem is what happens when the user clicks on an item that is already selected without holding down the CTRL or SHIFT key.</p>
<p>Case 1: DragMode is set to dmManual
The selection is cleared before the mouse down. This will not allow multiple items to be dragged.</p>
<p>Case 2: DragMode is set to dmAutomatic
The MouseDown event never fires. The selection is not cleared so dragging is OK, but the user cannot clear the selection by clicking on one of the selected items. This really causes a problem if all the items are selected or the next item the user wants to select was part of the current selection.</p>
<p>Note that this problem only happens if you assign something to the DragObject in the OnStartDrag procedure. I think the problem would go away if OnStartDrag would only start after the user moves the mouse. I have Mouse.DragImmediate := false set but I still get the StartDrag fired as soon as I click on an item in the list box.</p>
<p>I am using Delphi 7 for this project but I see the same behavior in Delphi 2007.</p>
http://stackoverflow.com/questions/192960/tlistbox-drag-and-drop-problems-with-multiselect-enabled/194457#1944570Answer by Gamecat for TListBox Drag and Drop problems with MultiSelect enabledGamecat2008-10-11T19:10:07Z2008-10-11T19:10:07Z<p>I have played with this for a while. And observe the same effects.</p>
<p>I would use Case2 and add a (Select All/Deselect All) button to the list. It even adds extra functionality and solves the most annoying part of the problem.</p>
http://stackoverflow.com/questions/192960/tlistbox-drag-and-drop-problems-with-multiselect-enabled/222270#2222700Answer by Mark Elder for TListBox Drag and Drop problems with MultiSelect enabledMark Elder2008-10-21T15:20:35Z2009-02-06T16:38:28Z<p>I'm not sure why this makes a difference but if I change the DragObject to be a TDrag**Control**ObjectEx (instead of a TDragObjectEx) I get the behavior I am looking for. Drag mode is set to Automatic.</p>
<p>I tried to look and see what this was affecting but I could not figure it out.</p>
http://stackoverflow.com/questions/192960/tlistbox-drag-and-drop-problems-with-multiselect-enabled/395647#3956470Answer by Shannon for TListBox Drag and Drop problems with MultiSelect enabledShannon2008-12-28T00:55:44Z2008-12-28T00:55:44Z<p>Use Case 2 and when the TListBox.OnMouseUp event fires check to see if multiple items are selected and were dragged. If multiple items are selected, but weren't dragged, then deselect all items apart from the clicked item. <br>
<br>
I would use this method because Windows Explorer works this way. </p>
http://stackoverflow.com/questions/192960/tlistbox-drag-and-drop-problems-with-multiselect-enabled/469838#4698380Answer by _J_ for TListBox Drag and Drop problems with MultiSelect enabled_J_2009-01-22T16:27:23Z2009-01-22T16:27:23Z<p>Bit of a kludge but this works. DragMode on the ListBox is set to dmAutomatic.</p>
<pre><code>procedure TForm1.ListBox1DragDrop(Sender, Source: TObject; X, Y: Integer);
var
iDropIdx, i: Integer;
pDropPoint: TPoint;
slSelected: TStrings;
begin
{Which item is being dropped onto?}
pDropPoint := Point(X, Y);
iDropIdx := ListBox1.ItemAtPos(pDropPoint, False);
slSelected := TStringList.Create;
try
{Copy the selected items to another string list}
for i := 0 to Pred(ListBox1.Items.Count) do
begin
if (ListBox1.Selected[i]) then
slSelected.Append(ListBox1.Items[i]);
end;
{Find the selected items in the listbox and swap them with the drop target}
for i := 0 to Pred(slSelected.Count) do
begin
ListBox1.Items.Exchange(ListBox1.Items.IndexOf(slSelected[i]), iDropIdx);
inc(iDropIdx);
end;
finally
slSelected.Free;
end;
end;
</code></pre>