Questions tagged [powerpoint-2013]

Use this tag for questions specific to the 2013 version of Microsoft's PowerPoint application.

Use this tag for questions specific to the 2013 version of Microsoft's PowerPoint application.

This tag should only be used if your question is programming-related. For non-programming-related PowerPoint questions, see SuperUser.

111 questions
2
votes
2 answers

pasting a picture from excel to powerpoint which fits the layout

I have an Excel Picture as Shape and i want to paste it to mny PowerPoint app which has a Special layout which i have already specified. Sub ExcelShapePowerpoint() Dim PowerPointApp As Object Dim myPresentation As Object Dim mySlide As…
Yigit Tanverdi
  • 161
  • 6
  • 18
2
votes
1 answer

Save PPTM as PPTX Without CustomUI Elements or VBA Macros

I have a Macro Enabled PowerPoint document(PPTM) that I would like to add functionality to "Export" to a non-Macro enabled document(PPTX). I have written the following VBA code to accomplish this: 'Default selected file type PPTX Dim selected As…
David Rogers
  • 2,601
  • 4
  • 39
  • 84
2
votes
1 answer

TF86001: Team Foundation was unable to load the Office Add-in

I am having the following problem in Powerpoint 2016 when I click on the My Shapes icon on the storyboard ICON, any idea?? Microsoft PowerPoint TF86001: Team Foundation was unable to load the Office Add-in. This may be caused by a Team Foundation…
Luis Valencia
  • 32,619
  • 93
  • 286
  • 506
2
votes
1 answer

indentation in PowerPoint 2013

I would like to change text indentation in some PowerPoint object. Paragraph -> Indentation -> before text Paragraph -> Indentation -> Special -> Hanging (how to change it on FirstLine or None?) -> By From that what I've found in previous versions…
buks
  • 405
  • 1
  • 6
  • 21
2
votes
1 answer

Shapes.AddOLEObject method not working in PowerPoint 2013 (32bit and 64bit)?

I am using the following code to add web browser control to PowerPoint slide, Set oShp = oSld.Shapes.AddOLEObject(Left:=100, Top:=100, Width:=200, Height:=300, Classname:="Shell.Explorer", Link:=msoFalse) The above code works fine in all PowerPoint…
Codename K
  • 890
  • 4
  • 23
  • 52
2
votes
3 answers

Not found StoryBoarding Tab in PowerPoint

Somehow, I lost the storyboarding tab in PowerPoint. How can I recover it? thanks. I am using both PowerPoint2010, and PowerPoint2013
chipbk10
  • 5,783
  • 12
  • 49
  • 85
2
votes
1 answer

C# Global keyboard hook in Office Addin 2013

I encounter a problem to make my Office Addin works with my global keyboard on Powerpoint 2013 but not on the previous versions (2007 and 2010). I do not get any exception but it seems that the OnKeyDown event is never triggered on Powerpoint 2013,…
2
votes
4 answers

How long does it take the VBA .Copy method to populate the clipboard in PowerPoint?

I have a macro that gets a shape from one slide by its unique tag properties and then pastes it to another slide. It works as expected on many different versions of OS (Win 7, 8, 8.1) and versions of PowerPoint (2007, 2010, 2013, 32 & 64 bit). But,…
Jamie Garroch - MVP
  • 2,839
  • 2
  • 16
  • 24
1
vote
2 answers

Use AutoFilter or Loop through the file in VBA Office 2013

So I am trying to achieve a task where I would fetch values from an excel file. Make the necessary modifications to the values, and then add them to the Powerpoint Presentation. Hence, to achieve the goal. I used the developer tools in Power point…
1
vote
1 answer

How to copy the slides from existing presentation to new presentation based on the specific slide input?

This is my first task on PPT Macros. I have the code which can copy the selected slides and pastes into a new presentation, it is very time taking especially when selecting the slides which are not in order e.g(1,2,5,8,9). I am looking for a code…
Revan Erraboina
  • 155
  • 1
  • 11
1
vote
0 answers

PowerPoint VBA Recognizing Shapes in a Grouping

I am trying to create a simple PowerPoint file to capture a series of milestones for a project portfolio. I have created the following Macro to create the milestone visual and group the shapes. However, I am looking to create another macro for…
BigBill
  • 11
  • 1
1
vote
1 answer

PowerPoint 2013 VSTO Undo-Redo CustomerData or CustomXMLPart manipulation

I'm building a PowerPoint VSTO addin where I store a lot of metadata on the presentation. I'm currently storing it as XML as either manipulating AddIn.Application.ActivePresentation.CustomXMLParts for global data and Slide.CustomerData for slide…
vinczemarton
  • 7,756
  • 6
  • 54
  • 86
1
vote
2 answers

Replace fonts in grouped objects - Powerpoint 365

I have been trying to develop a macro which will replace all fonts in presentation with "Arial". So far I have been successful in replacing fonts for textboxes, tables and SmartArt but couldn't able replace fonts in grouped objects. Below is the…
Krishna
  • 11
  • 1
1
vote
1 answer

How to change the font of a selection in powerpoint 2013 with VBA

I would like to to change for the text selection in powerpoint 2013 the font to be bold and "Couirier New". I tried with this VBA script to change the font: Sub chengeFont() With ActiveDocument.Selection With .Font .Name =…
Drago
  • 101
  • 6
1
vote
2 answers

Loop Through Charts on Selected (or Range of) Powerpoint Slides

I am currently using this code to update all links in my powerpoint presentation: Sub UpdateLinks() Dim ExcelFile Dim exl As Object Set exl = CreateObject("Excel.Application") ExcelFile = "C:\Users\J\Documents\Reporting\Governance Physical…