mfc >> Drag Drop of a vCard into my App

by Steven Nies » Wed, 26 Nov 2003 22:20:44 GMT

hi,

does anybody know how the drop-handler ( ::OnDrop )
has to work, if I want to drop a vCard from a Mail-client
(Outlook express, Netscape Mail,...) into my mfc-app?
When I am dropping text out of an email on my app it works fine
(I can access the text), but I can access the text of the vCard.

Any ideas (code snippets?) out there?


Steven.





Similar Threads

1. Drag Drop of a vCard into mfc app - VC MFC

2. Error trying to drag and drop between app instances (of same app)

3. Drag drop in web deployed app - CSharp/C#

4. Drag & drop object in workflow app

I need to design a workflow application with C#. I want to design an UI with
some workflow components which they can be drag & drop anywhere in order to
design the workflow for the application users. Moreover, when the user
double click on the component, they can define some routing rules for the
process. Is it possible to have such fancy UI in C#?? Any reference sites or
tutorial??

Million Thanks.


5. File Drag & Drop From WinForm to Other Apps ?? - CSharp/C#

6. drag drop from app to explorer with delayed file creation

Hi,

I am developping an app using managed C++. I want to be able to do a
drag drop from the app to windows explorer. The files to be dropped
onto explorer do not exist yet, the files are to be created by the app
when the user does the drop into explorer.

I have done some searches and found COleDataSource::DelaySetData could
be useful but this is MFC and I can't find the equivalent in .NET.

Anyone know the .NET equivalent for DelaySetData or any other way I can
accomplish what I want to do?

Many thanks,
Nick

7. Drag and Drop in MDI apps.

8. Drag and drop between apps

Did you register the windows as drag and drop targets?  It should work
between applications or windows in the same app.

Tom

"VC" < XXXX@XXXXX.COM > wrote in message
news: XXXX@XXXXX.COM ...
> I want to drag a string from one of my applications and drop it in the
> tree control of another app. in my treeview I have mapped OnDragOver
> and OnDrop. and made AfxOleInit in InitInstance function. however the
> OnDragOver and OnDrop were never called.  Does it mean OnDragOver and
> OnDrop only working in same process instead of two different
> processes? Can anyone give me some ideas?
>
> Thanks