Questions tagged [powerpoint-2016]
54 questions
1
vote
1 answer
Reposition shape and text box on a slide
I want to achieve when I select either a shape or a text box they will move to the same location (bottom align) on a slide. My shape and text box are different in height so for example with text boxes, some have one line and some have multiple…

pptbot
- 55
- 1
- 7
1
vote
0 answers
macro cannot be found or has been disabled. in ppt 2016
note - non duplicate: I have looked through the forums, ppt doesn't come up and all solutions given are reinstall or no solution.
I can not figure out how to let macros work on PPT. I write a macro in vba and it works until I close the document. It…

Yaakov Pinsky
- 111
- 2
1
vote
1 answer
How to display current time + time interval in a PowerPoint slide?
I have a Microsoft PowerPoint document and I have a slide which I display during a short break. I would like the slide to show the time when the slide was shown + a time interval. This is to show when the audience should be back again.
So simply a…

Chau
- 5,540
- 9
- 65
- 95
1
vote
0 answers
How to disable autosizing of images into PowerPoint 2016?
I have a VBScript which copies images from Qlikview tool and pastes them into PowerPoint. Earlier we were using Office 2010 in that this worked pretty well however we are now migrated to Office 2016 and the images are all distorted. The reason is…

Yash_792
- 45
- 1
- 2
- 6
0
votes
0 answers
Inserting Summary Zoom Slide into PowerPoint Presentation 2016
Sub insert_zoom()
Dim pTargetSlide As slide, pNewSlide As slide _
, pLayout As CustomLayout _
, pShape As shape _
, i As Integer
With Application.ActivePresentation
Set pLayout = .Slides(1).CustomLayout
…

sip007
- 1
0
votes
1 answer
Looking for a way in PowerPoint to search and replace all (R) normal text with (R) superscript text
I am looking for a way in PowerPoint to search and replace the registered trademark symbol (R) in normal text with (R) in superscript text.
I have tried the normal search and replace by copying the superscript text. This doesnt work, also tried to…

KerriS
- 1
- 1
0
votes
0 answers
Slide transition effects fail in a vba controlled PowerPoint presentation
I am runnig PowerPoint presentations with PP 2016 on 64-bit Win10 and Win11 PCs, which are cotrolled by Visual Basic for Application (vba) code. The code changes the slide content, e.g. visibility, colour and text content of shapes and initiates…

Georg
- 1
- 2
0
votes
0 answers
How can I open a PPT file from an Excel VBA Macro without automatically updating links?
I have an OLE problem. I have written VBA code that's running an Excel Macro to update links to Excel objects within a PowerPoint presentation. The problem is that the update goes very slowly (it takes several minutes - sometimes as many as 30) when…

Leeland Graham
- 1
- 1
0
votes
0 answers
Replace shape(autoshape) not working when contains text in PowerPoint vba
Need little help from this forum.
I want to replace shape(autoshape) with other autoshape in my project & found a solution here http://www.vbaexpress.com/forum/showthread.php?68760-Change-Fill-color-using-VBA-in-PowerPoint.
But in my project there…

Papu
- 1
- 1
0
votes
0 answers
Font colour animation
I want to delete any animation of my two text boxes (TextBox_A, TextBox_B) then add a fade animation & a font colour change.
The font colour changed text in TextBox_A & 2nd/remaining text in TextBox_B changed to the default colour (orange).
Dim oeff…

Papu
- 1
- 1
0
votes
1 answer
Copy/Paste CheckBoxes If True In PowerPoint
I am trying to copy all true or checked boxes on all slides and paste them onto one slide within my presentation. I can't seem to figure it out. Below is the code that I am using. Any help is appreciated.
`Sub ckbxCopy()
Dim shp As Shape
Dim sld As…

casaler
- 41
- 5
0
votes
1 answer
How to find out if two shape objects in PowerPoint intersect with each other?
There are multiple shapes present in a PowerPoint slide. See image below
As can be seen in the image, we have 3 shapes - rectangle, triangle and circle. I would like to iterate over the shapes in the slide and create a list of shapes for each shape…

prakashra
- 11
- 4
0
votes
2 answers
How to apply Gradient to Line/Border of a shape in Powerpoint using C#?
In PowerPoint 2016 UI, it is possible to apply a gradient to the Border of a shape. The same however cannot be done using Microsoft.Office.Interop.PowerPoint in C#. I was able to apply a gradient to the shape but not to its border. Kindly advise how…

Rupesh Bhurke
- 162
- 1
- 8
0
votes
1 answer
List of objects in front of an object in PowerPoint using VSTO
There are few shape objects in a PowerPoint slide. The rectangle, ellipse, parallelogram, triangle and pentagon were drawn in that order meaning rectangle is at the back of all objects.
When iterating through the objects in PowerPoint, is it…

prakashra
- 11
- 4
0
votes
1 answer
Textbox not support for property and menthod in VBA ppt
Here is my code
Sub Loadde()
If Slide3.Shapes("MA_VONG") = 1 Then
Slide5.Shapes("Q1").TextFrame.TextRange = Slide6.Shapes("1").TextFrame.TextRange
Slide5.Shapes("Q2").TextFrame.TextRange = Slide6.Shapes("2").TextFrame.TextRange
…

IWannaAsk
- 1
- 1