Supporte Dragdrop Componente Suite.

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #35683
    wesley bobato
    Participant

    Hello Friend SSkinManager1 not working correctly with DragDrop Component Suite

    I Must Disable Property ExtendedBorders DragDrop to Work Properly.

    Fixing this is Possible?

    here is the site of the component,

    http://melander.dk/articles/dragdrop52released/

    http://melander.dk/download/DragDrop20100817.zip

    Thank you for your attention

    Demo in this Annex for Better knowledge

    https://www.dropbox.com/s/erhyw8m395cmqlk/VirtualImageList.zip

    #50427
    wesley bobato
    Participant

    hello friend please look at the video below to understand this error when I enable the alpha ExtendedBorders skins, and disables the DragDrop Deicha Very Slow … it is possible to improve it?

    https://www.dropbox.com/s/9mn310c54dnyk7a/VID_20130410_143157.3gp

    #50447
    Support
    Keymaster

    Moving of window may be faster when SkinManager.AnimEffects.BlendOnMoving property is Active.

    Dragdrop issue I can't repeat unfortunately…

    #50462
    CheshireCat
    Participant
    'wesley wrote:

    I Must Disable Property ExtendedBorders DragDrop to Work Properly.

    Hello,

    watch the attached demo, it shows drag'n'drop with files from explorer. The function works correctly and fast when ExtendedBorder is enabled.

    [attachment=6305:DragFileDemo.zip]

    #50490
    wesley bobato
    Participant

    Hello friend Thank you for your attention and Thank the Demo, I need you to Drag Images Display the Thumbnail Image Dragged.

    so I use DragDrop Component Suite. is possible to do this in this example?

    can you help me?

    Thank you for your work.

    #50493
    CheshireCat
    Participant
    'wesley wrote:

    I need you to Drag Images Display the Thumbnail Image Dragged.

    so I use DragDrop Component Suite. is possible to do this in this example?

    Hello,

    yes, it is possible. Check out the new demo 🙂

    [attachment=6312:DragFileDemo.zip]

    #50494
    wesley bobato
    Participant

    Hello Friend 1000 times Thank you for your help.

    Congratulations for your wonderful work.

    I noticed that you are a master at Windows API.

    could you help me to create an example of how to drag a list of

    Images of a TsImage to windows Explorer, Showing the Thumbnail Image Dragged?

    Copy Files to Folder Drag Drop.

    or maybe you can show me a website to learn Windows API.

    I'll attach an Example for You

    But Once Again Thank You For Your Help Friend.

    #50495
    CheshireCat
    Participant

    Use ControlAtPos to determine which child control is at the specified location within the control. With the variables dwEffect you can control whether files should be placed.

    Code:
    function TForm2.DragOver(grfKeyState: Longint; pt: TPoint; var dwEffect: Longint): HResult;
    begin
    if ControlAtPos(ScreenToClient(pt), False) is TsImage then // which control is under the mouse pointer?
    dwEffect := DROPEFFECT_COPY // effect DROPEFFECT_COPY or DROPEFFECT_MOVE drop allowed
    else dwEffect := DROPEFFECT_NONE; // effect DROPEFFECT_NONE prevents drop files outside TsImage

    if (DropTargetHelper <> nil) then OleCheck(DropTargetHelper.DragOver(pt, dwEffect));

    Result := S_OK;
    end;

    Click on the link below for useful information about Drag'n'Drop 🙂

    Implementing Professional Drag & Drop

    #50496
    wesley bobato
    Participant

    Thanks Friend for your attention I got Create a Functional Example. I am attaching everyone could use it

    Good Sunday, a big hug.

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.