I'm currently considering a number of options for copying an excel sheet into a powerpoint presentation.
- Using VBA select a excel sheet, copy the range and place it into a newly created powerpoint slide as an image.
- I create excel automated html of a sheet, once that html is saved(initially), i create an image off of the html.
- Using VSTO, i open Excel copy each object and paste it into a new powerpoint slide, using the clipboard(or another copy method).
These operations will be called frequently, by many different users - all the actual operation occurs on a single server.
What would the pros and cons of each approach be? Are there any prefered or better optimized techniques available?