Using: .NET framework 1.1
Subject: DragDrop, Image
Works:
Dragging a picture from a framework application to the same
framework application.
Dragging a picture from/to a framework application to/from WordPad.
Dragging a picture from Microsoft Word 2000 to a framework application.
Does NOT work:
Dragging a picture from a framework application to a nother
framework application.
Dragging a picture from a framework application to Microsoft Word 2000.
Displayed error:
An unhandled exception of type
'System.Runtime.Remoting.RemotingException' occurred in
system.windows.forms.dll
Additional information: This remoting proxy has no channel sink which
means either the server has no registered server channels that are
listening, or this application has no suitable client channel to talk to
the server.
Returned object for Bitmap, DIB or DeviceIndependentBitmap:
{System.Runtime.Remoting.Proxies.__TransparentProxy}
Partial solution for allowing to drop a picture into Microsoft Word 2000:
Clipboard.SetDataObject(s.Image, True)
Me.DoDragDrop(Clipboard.GetDataObject, DragDropEffects.Copy Or
DragDropEffects.Move)
Is there a solution to dragdrop pictures between framework based
applications?
Thanks for taking your time
JH
|