I am developing an analyse program which produces a large number of results and graphs for each file. These results are presented in different windows one at a time.
It is possible to programmatically generate these windows and print each window before generating the next one. I would like, however, to be able to generate one window, copy it to the clipboard (Alt+Printscreen), (this function is available through knowledgebase), and then paste the contents of the clipboard into a word document. This second step is the problem. By this way a large number of analyses can be done and all the results and graphs will be copied to one Word document for later study.
You can use ActiveX to paste anything that is in the clipboard into a word document, just follow the logical flow, application, documents, add, paragraph, last, range and paste using property nodes. Hope this helps