i have a single powerpoint slide that we use for reporting. This slidehas some tables and some textboxes with bulletted lists
We are trying to see if we can update this powerpoint slide (update text in textbox and update text in tables) using C# as we now have a lot of the data that we manually add to this slide in a SQL database.
so i basically need to:
- load up current presentation and this single slide (treat it like a template)
- access textboxes and clear current text
- enter new text from my data source (happens to be SQL server)
- update tables
- save as specific filename
what is the best way of doing this from C#. i want to basically have a button in a webpage or a winforms app that kicks off the steps above.