M
MeSteve
I am setting slide names:
Set pptSlide(i) = ActivePresentation.Slides.Add(i, ppLayoutBlank).name =
"Front" & i
&
Set pptSlide(i) = ActivePresentation.Slides.Add(i, ppLayoutBlank)
With pptSlide(i)
.Name = "Front" & i
End With
If I close the .ppt and reopen, the names are not being stored. I have some
code that looks for and deletes the slides I am making and then recreates
them with new data. Any ideas what I am missing? Thanks.
Set pptSlide(i) = ActivePresentation.Slides.Add(i, ppLayoutBlank).name =
"Front" & i
&
Set pptSlide(i) = ActivePresentation.Slides.Add(i, ppLayoutBlank)
With pptSlide(i)
.Name = "Front" & i
End With
If I close the .ppt and reopen, the names are not being stored. I have some
code that looks for and deletes the slides I am making and then recreates
them with new data. Any ideas what I am missing? Thanks.