Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion

Wrong processing of Drag&Drop in some special cases

We have the problem that in some cases Drag&Drop will be startet even if the left mouse button isn't pressed any more.

We solve this problem by adding following check in the methode: TElTreeView.IntMouseMove

  if not Dragging then
  begin
    if FPressed then

changed to

  if not Dragging then
  begin
    if FPressed and ((GetKeyState(VK_LBUTTON) and $8000) = $8000) then

Comments

Sign In or Register to comment.