Questions tagged [powerpoint-2010]

PowerPoint 2010 is the presentation graphics software in the Microsoft 2010 Office suite. With PowerPoint, you can use its easy-to-use predefined layouts, themes, and templates to create dynamic and professional presentations.

PowerPoint 2010 is the presentation graphics software in the Microsoft 2010 Office suite.

With PowerPoint, you can use its easy-to-use predefined layouts, themes, and templates to create dynamic and professional presentations.

142 questions
0
votes
1 answer

VBA PowerPoint 2016 shapes BuildFreeform properties after .ConvertToShape

After creating a shape with .ConvertToShape, what is its index in Shapes? And how do I give it a Line colour? I want to create several msoFreeform shapes, and give them different colours. I have come this far: With…
user6439024
  • 79
  • 1
  • 1
  • 8
0
votes
1 answer

Reference to xDoc, declared as Document, generates "user defined type not defined" in PowerPoint VBA

I want in PowerPoint: after a click on the command button, send e-mail with attachment (that same PowerPoint presentation) to specific e-mail address. I used this based on internet, but I think that xDoc may be a problem? When I click on the button…
Piskota
  • 7
  • 2
0
votes
1 answer

Creating 3D tables in Powerpoint

I am trying to make a 3D table in Powerpoint with a gradient effect that look somewhat like the image shown below but unable to make it. None of the default designs/styles look like the one I displayed below. I could not find a matching gradient…
0
votes
0 answers

Change line colors for PowerPoint 2010 line charts using VBA

I am working to take slides from various teams and processes and standardize the formatting in PowerPoint 2010. The biggest challenge I am having is cycling through all of the series on a chart, which could be a varying number across slides and from…
0
votes
1 answer

python - win32com -> powerpoint.application: skip password pop up dialogue

I have a lot of powerpoint file need to open. Some of the files require password, and I need to skip the pop up dialog. How can I skip this dialogue, and jump to the next path? Example: I'm using win32com method to use powerpoint.application. This…
0
votes
1 answer

Count the group of shapes in powerpoint without using .type property

The script which I have tested is running from excel application, which will count the shapes of pictures and count of actual shapes (that is textbox,placeholder) .Below is the script which pops up messages with the count of pictures and shapes Sub…
lifeinvba
  • 69
  • 1
  • 4
  • 18
0
votes
1 answer

Compile Error when I try to activate presentation

I'm stumped and I feel like I've got to be missing something dumb... This macro is intended to call and run a macro whose code is contained in another file and "apply" the macro to the open presentation (from which the initial macro was run). I'm…
Joe K
  • 85
  • 1
  • 1
  • 9
0
votes
1 answer

Iterate through all slides and get the count of characters in powerpoint

I have a script to loop through only one slide and get the text written in the shape Sub Sample() Dim textShapes() As Shape, i as Long ReDim textShapes(0 To 2) i = 0 For Each thisShape In ActivePresentation.Slides(1).Shapes If…
lifeinvba
  • 69
  • 1
  • 4
  • 18
0
votes
1 answer

VBA Powerpoint auto next slide after wav audio file finishes playing

Is there a way to insert an audio file in VBA code and how would I write the loop so that it advances the slide right after the audio file finishes playing until the slideshow is done? (i.e "Advancing to next slide in 3....2....1...." [changes to…
jezhuz
  • 41
  • 1
  • 6
0
votes
1 answer

Adding customized colors to POTX file

I know there already is an answer to the question here: How to add new(customized) Theme colors to Powerpoint using VBA But it didn't work. And as I'm not allowed to comment there (not enough reputation) I'm sorry for opening up a new question.…
RuudGullit
  • 34
  • 1
  • 8
0
votes
1 answer

Powerpoint VSTO how to insert slide into section

I am working on a Powerpoint addin, that helps with creating agenda slides. I have to insert a slide at a specific location, which is easy using presentation.Slides.AddSlide(index, customlayout). But since I am also using sections, this always…
Niels Ziegler
  • 466
  • 2
  • 6
  • 15
0
votes
1 answer

c# how to add multiple objects in power point slide

1) i have to show a text at top center position of slide 2) just below text i have to show data in table 3) i have to generate line chart in same slide from my data stored in datatable. i am looking for this kind of output. here i am sharing a…
Mou
  • 15,673
  • 43
  • 156
  • 275
0
votes
1 answer

Powerpoint 2010 - broadcast.start()

I'm wanting to create a Powerpoint slide that automatically updates from a source every 5 mins then starts a broadcast service to a website (& keeps looping to refresh the content). I've tried using this code below to start broadcasting, but keep…
Hamish
  • 1
  • 1
0
votes
1 answer

Power BI - Powerpoint Export is Not even Showing

I was going to try to export a template I created to powerpoint. But when I go to the export option I only get one option in export which is only to a powerbi template. As note: I'm still on Office 2010 with no chance of changing it and have the…
FancyDolphin
  • 459
  • 1
  • 7
  • 25
0
votes
1 answer

Apply master slide to multiple powerpoints

I'm quite new to this. I have a bunch of powerpoint presentations that I would like to apply a master slide to. All the powerpoints are within subfolders of one folder (if that makes sense) So if anyone can help with the code it would be greatly…