Tagged Questions
5
votes
2answers
164 views
How to drag & drop lots of files without taxing system resources?
One of the features that the program that I'm working on is the ability to drag objects from its main window and drop them onto Windows Explorer as files.
To do this, we override ...
4
votes
1answer
141 views
Drag and Drop text - What am I missing?
I am trying to add drag-and-drop text to my Doc-View App. I added the COleDropTarget variable to the view class, registered it in OnCreate(). I added OnDragEnter(), OnDragOver(), OnDragLeave() and ...
3
votes
1answer
238 views
Implement Drag and Drop without using Context Menu using Shell extension in C++
HI,
I want to implement Drag and Drop without using Context Menu using Shell extension in C++
Currently I am refering to Shell extension article: ...
2
votes
2answers
546 views
COleDataSource/COleDropTarget cancel drag&drop operation
I have implemented my custom drag&drop by deriving from COleDataSource and COleDropTarget. Everythings work fine but I have an scenario that makes the application crashes.
That happens when the ...
1
vote
1answer
292 views
When and how is DragDetect useful?
Basically I need something to determine if the user in the process of a drag and drop action to determine when to suppress over zealous default behavior of the CTreeCtrl label editing in an extended ...
1
vote
1answer
281 views
MFC/OLE Drag & Drop - freeing Globally allocated memory
If using COleDataSource & COleDataObject, you allocate some global memory for each clipboard data format you wish to store data in the drag'n'drop operation. In the drop code, you query if the ...
0
votes
1answer
411 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 ...
0
votes
1answer
259 views
Custom image while dragging an CWnd-derived object
I want to display a custom image while dragging an object in a drag&drop operation.
I have created a CWnd-derived control (a chart) and I display 4 of them in the same dialog. I've implemented ...
0
votes
3answers
523 views
MFC: MessageBox during a Drag-Drop
I need to display an error message on rejecting a drop in my application. I tried this in the OnDrop() but then the source application hangs till my message box is dismissed.
How?