Before I start, I am totally new to C# and most of my programming knowledge come from searching what i need on Google. :P I am good at copy paste but have basic programming skills.
I am working on an windows screenshot application to capture screens using Print Scrn key (by Hook in C#). So this application minimizes on start and user would be able to capture screens by just clicking on Print Scrn key.
I problem is I want the application to be able to save these screen caps in a word file in the background and when the user Hits "End" key the Word file Save Dialog should be displayed (This way user can save the word file by giving a name).
I know this is kind of tricky, but currently we do all these manually which eats up lot of our time. Open Word-> Take Screenshot - > Navigate to Word -> Paste - > Navigate to Window -> Take Screenshot - > Navigate to word again -> Paste .....
I wanted your help to make is let pain... Simple take screen caps-> keep doing it until done -> Click End to Save document.
I have found a portion of code to use Hook from stack overflow, all I need is a way to open an handle word file in the background.
Also I am able to generate pdf file using a third party .dll --which generates document with watermark :( So I thought I should use Word.
Your help would be much appreciated! Cheers! :)