Is it possible to copy multiple images in the clipboard using Delphi?
Now I have to go to my program (it uses ImageEngine), copy one image (with complex experimental data), switch to MSWord or PowerPoint, insert the image, and repeat the same steps multiple time.
Can I just check the data I need, generate images (color maps) and copy all them at once?
The clipboard does not support copying of multiple images, but you could try generating a Word compatible clipboard format that supports multiple images such as RTF:
Or better still use a good clipboard management utility that will automatically remember multiple copy and cut and will give you options to paste one of the saved contents. Like this one: http://www.vbforums.com/showthread.php?500706-Multi-Clipboard
From what little I have experimented with windows clipboard I think you can load multiple data in clipboard as custom data. MS Office apps seem to use this route.