Tagged Questions
15
votes
2answers
1k views
How to invoke an action during powerpoint slideshow programmatically?
I am automating a Powerpoint scenario using Coded UI & VSTO. In my powerpoint presentation I have created an 'Action' setting on a shape to launch notepad. During slideshow I need to invoke this ...
4
votes
1answer
764 views
Naming Slide Images on Export in PowerPoint 2007
Presentation.Export(filename, "PNG", sizeX, sizeY); creates thumbnail images of all slides in the PowerPoint presentation.
My problem is that the thumbnail filenames change according to the Language ...
1
vote
1answer
1k views
Creating nested bullet list in PowerPoint 2007
We're trying to create a PowerPoint slide programmaticaly. We can obtain bullets on a single level, but playing with tabs and line returns doesn't work for nested enumerations.
For now we get:
text ...
1
vote
2answers
601 views
How to update PowerPoint chart using c#
I have to update pptx file. In this pptx i have some set of chart which i have to update the data through c# code. Please let us know how to do it?
Note:
It is not OLE graph, it is power point chart ...
1
vote
1answer
155 views
Get name of control that calls macro in Powerpoint
Is there a way in VBA for PowerPoint or C# COM AddIn, to identify the control that calls a macro or the control that is active (figuring that it has just been clicked)?
I know about
...
1
vote
0answers
438 views
How to change the powerpoint view type as Reading view programmatically?
There is a new view type introduced in powerpoint 2010 called as 'Reading View'. I am trying to apply it to a presentation but the PpViewType Enumeration of office interop does not contain any member ...
1
vote
1answer
670 views
How can I open a password protected PPT & PDF
I want to check if a PPT file is passsword protected. I am using Office interops. I found that Presentations.Open function doesn't accept a password as parameter.
Is there any other way to check a ...
0
votes
1answer
508 views
How to Enable Macro settings thru code?
I have created a Macro in a Powerpoint Presentation using the following code. When running this small piece of code I was getting an exception " programmatic access to visual basic project is not ...
0
votes
1answer
240 views
Set default font for PowerPoint tables
I can create PowerPoint tables with many cells, but the default font (28 points) is too large. Without access to the user's PowerPoint template, how can I set the font for a table I have created? ...
0
votes
0answers
259 views
Programmatically insert VBA Macro in PowerPoint 2010 pptm file
We use some macros in PowerPoint to read serverproperties (like ContentTypeProperties) from SharePoint.
We are currently aiming to automate to insert of Macros into the PPTM files. We have tried some ...
0
votes
1answer
342 views
Automate PowerPoint VBA Add-In From External C# Application
I am designing a C# application that will open a PowerPoint presentation, split the slides with animations into separate slides, and then export the whole presentation to a series of JPG images. I'm ...