0
votes
2answers
24 views
C# DragEnter event of the Winforms DragDrop.
Why do we actually need to handle DragEnter event of the drop destination?
What is its effect at the destination?
At Source
public partial class ToolBoxForm : System.Windows.Forms.Form
{
…
1
vote
1answer
25 views
Catching a drag exit in Qt?
I've got a custom widget descended from QWidget that I want to be able to drop onto, and while the drag is hovering over the widget I'd like to highlight it to provide a little visual feedback to the …
0
votes
1answer
14 views
COleDataSource - setting drag & drop data between applications
Some code I am working on uses COleDataSource::CacheGlobalData, passing as CF_TEXT an HGLOBAL pointing to some memory allocated for the text. I want to also add a numeric value, so ythe drop-target …
1
vote
1answer
16 views
How to use filegroupdescriptor to drag file to explorer c#
I would like to drag and drop an element of a listbox to explorer. When the drag and drop is started, I need to prepare the file on demand and save it to a memory stream.
Can you provide me with an …
0
votes
3answers
32 views
Jquery drag and drop plugin between tables
I'm looking for a jquery plugin that makes it possible to drag and drop between two different tables. I have a table containing search results and I want to make it possible to drag each result to …
1
vote
1answer
28 views
WPF: PreviewMouseMove not firing when left mouse button is pressed?
I'm writing a small drag and drop feature on the project I'm working on. I've done this type of feature several times before, and I always use a combination of PreviewLeftMouseButtonDown and …
2
votes
3answers
72 views
Require help to implement drag from Java Application and drop to Native File System
I have a Java Swing application which shows a list of the files/Folders that have been uploaded to the server. I have a requirement to download selected file(s)/folder(s) to native file system using …
-1
votes
1answer
39 views
Cocoa: create drop zone for files
I want to create a drag and drop zone (using an NSView) for ANY file in my cocoa app. How do I do it?
1
vote
4answers
47 views
Drag and Drop between 2 list boxes.
Trying to implement drag and drop between 2 listboxes and all examples I've seen so far don't really smell good.
Can someone point me to or show me a good implementation?
0
votes
2answers
16 views
dragStart on draggables repeatedly called in jquery?
Ok. So I'm going to go out on a limb and presume that a draggables "start" event gets fired again after the movement has stopped and user starts moving again, even if hasn't been dropped yet?
The …
0
votes
1answer
29 views
Dojo DnD Move Node Programmatically
I would like to know if there is a way to move the node programmatically in dojo Dnd? The reason is I would like to revert the changes to the drag and drop when the web service call triggered a failed …
0
votes
2answers
108 views
+150
Drag-and-drop accordion panels? (ASP.Net)
Hello, I have a set of accordion panes(dynamically created) contained in an Accordion control. Basically, what I am wanting is for the user to be capable of dragging these accordion panels so that …
0
votes
0answers
30 views
droppables not being created on drag start
trying to create my droppables based on the object being dragged. the drag works fine, but the droppables are not being created. there also aren't any errors in the error console. any help?
JS:
…
1
vote
4answers
71 views
C#: Drag drop controls on surface
Is there a way that one can make a control, such as a textbox, drag-droppable in C#?
I want the user to have the ability to click and hold the control with the mouse and drag it around on its surface …
0
votes
1answer
29 views
+150
COleDropTarget not working for an MFC control
I have 2 MFC controls that I've created derived from a common base.
They appear in the same place in my dialog and by clicking a button it swaps between the 2 controls. I do dynamically create the …
