Anyone have any idea why copying a graphics image in a picture box to the clipboard using the Image property of the picture box works fine, but using the Picture property does not? For example, for a picture box named Picture1, using Clipboard.SetData Picture1.Image places a bitmap image on the clipboard, but using Clipboard.SetData Picture1.Picture gives nothing.
thanks, dave
Sat, 27 Sep 2003 03:26:12 GMT
Michael William #2 / 2
using Clipboard.SetData with Picture property
Works for me!
Mike
Quote:
> Anyone have any idea why copying a graphics image in a picture box to the > clipboard using the Image property of the picture box works fine, but using > the Picture property does not? For example, for a picture box named > Picture1, using Clipboard.SetData Picture1.Image places a bitmap image on > the clipboard, but using Clipboard.SetData Picture1.Picture gives nothing.