VBA - Inserting page number on Image Slide

  • Thread starter Thread starter Savan Gandhi
  • Start date Start date
S

Savan Gandhi

Hi,
I have created a new destination presentation by creating images of source
slides and pasting the images in destination PPT. I have managed to create
images of source slides by hiding their page numbers. Now after pasting the
images on destination PPT, I want to give the page number to the images. How
is that possible?

My destination PPT will be containing only images of slides from 2 or more
source PPTs Slides.

Thanks,
Savan
 
No John, I am purposely making the source page number's visibility to false
so that I don't get it in the image. After the image is inserted I will give
page number depending on its location in the destination slide. I don't want
to use the page number present in the source PPT for that slide.

Thanks,
Savan
 
Hi savan

I understand what you need to do (I think) but I don't understand whether
the problem is that when you add the NEW slide number it is behind the image
and doesn't show OR you need to know how to add the number?

John
 
Oh Ok John,
Got your point. I actually want to know how to add the pagenumber on slide.

Thanks,
Savan
 
Assuming you have set osld to the slide in question

osld.HeaderFooters.SlideNumber.Visible=msoTrue

However unless you have version 2007 this number will always appear behind
your image. To avoid this set the background to an image fill.


--
-------------------------------------------
Amazing PPT Hints, Tips and Tutorials

http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
 
Okay. Thanks John.

Thanks,
Savan
John Wilson said:
Assuming you have set osld to the slide in question

osld.HeaderFooters.SlideNumber.Visible=msoTrue

However unless you have version 2007 this number will always appear behind
your image. To avoid this set the background to an image fill.


--
-------------------------------------------
Amazing PPT Hints, Tips and Tutorials

http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
 
Back
Top