Post by R.Wieserrgelfand2,
My problem is, I don't know how to implement it as I missing
quite a bit of detail about this.
Perhaps, you may know.
Well, the principle is easy enough: You need to create an "IDropTarget
object" (use this for further googeling), which than accepts the dropping of
the clipboard data (your attachment). After that you need to translate and
than transfer the received data to the brower, which means you need to
implement a "browser helper object" (BHO) (which you put the IDropTarget
object into).
However, I can't help you with specifics to the browser helper object, as
I've never created one myself. Also, C(something) isn't really my
programming language-of-choice, which makes it even more difficult. :-\
So, I'm afraid I can't be of much more help here, sorry.
Regards,
Rudy Wieser
Post by R.Wieserrgelfand2,
Post by r***@gmail.comWhat is the difference between the two?
The (I assume) browser you are dropping your stuff in knows what to do with
files (regardless their actual contents), but it has no clue what to do with
attachment data (and this is true for most other drag-and-droppable
content). It therefore accepts only the former, and rejects the latter.
A big difference is that files actually exist on the drive, while an
attachment (and other drag-and-droppable content) only exists in the
clipboard.
Regards,
Rudy Wieser
Post by r***@gmail.comI am able to drag and drop files from file explorer to html 5 web site.
Why can't I drag and drop outlook attachment to the same web site? What is
the difference between the two?
Post by r***@gmail.comIn terms of development, what need to be done to make it work? If there
is more than one way, please, list them.
I understand. I did a bit of snooping on google and found this
http://stackoverflow.com/questions/18625174/implementing-a-drag-and-drop-fun
ction-from-ms-outlook-into-our-web-application/18625671#18625671. My
problem is, I don't know how to implement it as I missing quite a bit of
detail about this.
Perhaps, you may know.
Thanks for your help.