All Questions
6 questions
0
votes
0
answers
374
views
Can a PPT macro invoked automatically when file is saved?
I have a macro for a PowerPoint deck that creates a set of dashboard slides. The dashboard is a table with data from each slide on a separate row, including the slide number, so it is a sort of table ...
0
votes
1
answer
494
views
How To Save a PPTX File with VBA
So I'm making a powerpoint game, and I want there to be a save feature. I remember seeing a save function while browsing through the commands but I don't remember what to do. Does anyone know how to ...
0
votes
1
answer
253
views
Powerpoint Macro-enabled Show Path
I am trying to save a presentation as a macro-enabled show in PowerPoint, and I'm running into a problem when I do. This code that I'm using works great when I'm save as a presentation - but not as a ...
1
vote
1
answer
2k
views
Issue with VBA SaveAs method for Powerpoint files
I'm having an issue on my VBA script.
I am doing some modifications on PPT tables.
At the end of the script, I want to save modifications and here is the issue.
To do the saving, I use the following ...
2
votes
5
answers
8k
views
VBA code to save a single slide as a .ppt
I have a code which saves my specified slide as a PNG:
Dim userName As String
userName = Slide322.TextBox1.Text
'Save slide
ActivePresentation.Slides(302).Export _
filename:="C:\Users\...
4
votes
2
answers
4k
views
vba PowerPoint 2010 open multiple files, copy module and userform, save as .pptm
The title pretty much says.
I need to open all the PowerPoint files recursively in a directory (done).
I need to copy the Userform and module from an already-open file.
I need to resave all the ...