vba - Is it possible to automate the Compare Presentations feature of PowerPoint 2010? -


is possible, either through vba or interop / vsto, automate "compare presentations" feature of powerpoint 2010? invoking start, though ideally i'd bit more control - , in perfect world able programmatically retrieve results.

powerpoint 2010 lacks macro recorder, , it's not possible use old trick of recording macro, executing operation manually, , looking @ generated code. powerpoint 2007 has macro recorder, doesn't support compare presentations feature.

i think answer question "no", i'd delighted proved wrong...

to invoke it:

application.commandbars.executemso ("reviewcompareandmerge") 

you can find name of other commands use going ribbon customize dialog box, finding command you're after, hovering cursor on it. tool tip appears show magic bit of text use (it's last part, in parentheses).

ah. or:

activepresentation.merge "c:\temp\test.pptx" 

Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -