powerpoint

Make just one slide different size in Powerpoint

旧巷老猫 提交于 2020-08-19 05:55:30
问题 Making a powerpoint that's supposed to show a before and after of a website. Since it's currently a long website I'd rather make a single long slide to put it on (20" instead of 7.5"). But all the other slides in the presentation should be normal-sized. I found Slide Size (Design ribbon, Customize section) but that resizes ALL slides. 回答1: Although you cannot use different sized slides in one PowerPoint file, for the actual presentation you can link several different files together to create

How do you run vba code when changing slides in powerpoint?

孤街醉人 提交于 2020-08-10 19:53:40
问题 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 OnSlideShowPageChange event in PowerPoint 2013 and 2016, but it seems to have no effect. I'm not used to working with PowerPoint vba, so I might be doing something completely wrong. Edit: I've managed to find an alternative method of resetting the label

Powerpoint presentation file reports to be corrupted after it was copied to a sharepoint online server

大城市里の小女人 提交于 2020-08-05 08:37:33
问题 Our company develops and distributes a Powerpoint Add-In. From the AddIn I add CustomXml parts (referenced to the presentation and the slide as well) to a Powerpoint presentation via DocumentFormat.OpenXml SDK V 2.10. Everything is OK with the file. Then I copy the file to a SharePoint online. It doesn't matter, if I copy via our WebDAV path, a SharePoint website on a browser or the latest possibility via OneDrive. Subsequently the behavior of that file varies: Powerpoint opens the file

VBA: Select all slides of defined sections

冷暖自知 提交于 2020-07-24 03:09:10
问题 I'm playing with a progress bar (with basically zero experience with VBA whatsoever). I found the following snippet online: Sub ProgressBar() On Error Resume Next With ActivePresentation .SectionProperties.SlidesCount( For N = 2 To .Slides.Count .Slides(N).Shapes("Progress_Bar").Delete Set s = .Slides(N).Shapes.AddShape(msoShapeRectangle, 0, .PageSetup.SlideHeight - 10, N * .PageSetup.SlideWidth / .Slides.Count, 10) Call s.Fill.Solid s.Fill.ForeColor.RGB = RGB(128, 128, 128) s.Line.Visible =

VBA: Select all slides of defined sections

妖精的绣舞 提交于 2020-07-24 03:07:49
问题 I'm playing with a progress bar (with basically zero experience with VBA whatsoever). I found the following snippet online: Sub ProgressBar() On Error Resume Next With ActivePresentation .SectionProperties.SlidesCount( For N = 2 To .Slides.Count .Slides(N).Shapes("Progress_Bar").Delete Set s = .Slides(N).Shapes.AddShape(msoShapeRectangle, 0, .PageSetup.SlideHeight - 10, N * .PageSetup.SlideWidth / .Slides.Count, 10) Call s.Fill.Solid s.Fill.ForeColor.RGB = RGB(128, 128, 128) s.Line.Visible =