Questions tagged [powerpoint-2016]
54 questions
0
votes
1 answer
How do you run vba code when changing slides in powerpoint?
I'm trying to reset the contents of some text boxes and labels when I change slides, but I'm struggling to get it to work. I've come up with this after doing a lot of googling and searching, but it doesn't seem to work. I'm trying to use the…

SunderB
- 21
- 2
- 6
0
votes
2 answers
Powerpoint can't show a video with headers. I see green screen
I've created a video using ffmpeg that contains headers.
My script for creating it is:
ffmpeg.exe -f rawvideo -vcodec rawvideo -s 560x448 -r 40 -pix_fmt yuv420p -i C_L_560x448_40_static_maxSSIM_QP23_B2.yuv -vcodec rawvideo -qscale 0 -filter_complex…

zinon
- 4,427
- 14
- 70
- 112
0
votes
1 answer
How to increase thickness of border for a rectangle in PHPPowerPoint?
I want to create a graph (Risk Matrix, Risk Waterfall in PowerPoint) for a PM tool I am developing.
In the waterfall I have created on the Y axis, rotated labels. But those labels do not respond to thickness change in the code. The rectangles look…

Vahe
- 1,699
- 3
- 25
- 76
0
votes
1 answer
Powerpoint 2016 Text Transparency
I need to set the Transparency of Text in a shape via VBA, in fact I need to set the transparency for the whole shape but it's the text I'm stuck with.
I just can't seem to navigate the object model to find the Transparency Property
Function…

James Travers
- 3
- 3
0
votes
0 answers
How to remove restrictions of Powerpoint 2016 Presentation
I am only allowed to view the PowerPoint presentation, not to print it, or to copy from. Since it is a tutorial I would appreciate if someone could help me to copy code out of it instead of screenshooting it and feed it to a AI to get the text.
What…

inetphantom
- 2,498
- 4
- 38
- 61
0
votes
1 answer
Adding a WebBrowser on a slide in PowerPoint 2016 using a VSTO AddIn
I am working on an VSTO AddIn for PowerPoint. One of the AddIn's features is to add life web pages on slides.
In the previous versions of PPT I could simply do:
var browserShape = slide.Shapes.AddOLEObject(
x, y, width, height,
…

O. Hahn
- 31
- 8
0
votes
1 answer
System.IO.FileFormatException on opening excel worksheet embedded in PowerPoint 2016 with OpenXml SDK
I have PPTX files generated by users with PowerPoint 2016. The slides have embedded excel worksheets which I need to access for further processing. I am using Open Xml SDK v2.6.1 in my project.
On passing the embedded object stream to the…

Shekhar
- 63
- 5
0
votes
0 answers
powerpoint 2016 screen recording
Compressing an .MP4 causes a transcoding process failure in FFMPEG. The MP4 was created using the PowerPoint 2016 Screen Recording tool.
I created an .MP4 using the default configuration in PowerPoint 2016. When the file is compressed using…

DeanB_Develop
- 2,107
- 3
- 23
- 37
-1
votes
1 answer
Why is vba (powerpoint) generating an error ......Integer is out of range. 1 is not in the valid range of 1 to 0?
When trying to execute the following:
Dim lCurrentSlide As Long
' Get the SlideID of the slide currently in view
lCurrentSlide = SlideShowWindows(1).View.Slide.SlideNumber
I get this:
Yesterday the code worked fine. Today - not so much.
Microsoft…

Tjingles
- 1
- 2