![]() |
|
|
#1 |
|
Guest
Posts: n/a
|
VBA - Inserting page number on Image Slide
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 |
|
|
|
#2 |
|
Guest
Posts: n/a
|
RE: VBA - Inserting page number on Image Slide
Is the problem that the number is appearing behind the image or something else?
-- ------------------------------------------- Amazing PPT Hints, Tips and Tutorials http://www.PPTAlchemy.co.uk http://www.technologytrish.co.uk email john AT technologytrish.co.uk "Savan Gandhi" wrote: > 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 > > > |
|
|
|
#3 |
|
Guest
Posts: n/a
|
Re: VBA - Inserting page number on Image Slide
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 "John Wilson" <john AT technologytrish.co DOT uk> wrote in message news:4DF36645-44F5-47C3-BE58-6870C6B83E54@microsoft.com... > Is the problem that the number is appearing behind the image or something > else? > -- > ------------------------------------------- > Amazing PPT Hints, Tips and Tutorials > > http://www.PPTAlchemy.co.uk > http://www.technologytrish.co.uk > email john AT technologytrish.co.uk > > > "Savan Gandhi" wrote: > >> 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 >> >> >> |
|
|
|
#4 |
|
Guest
Posts: n/a
|
Re: VBA - Inserting page number on Image Slide
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 "Savan Gandhi" <savan_gandhi@persistent.co.in> wrote in message news:OlY5No%23uIHA.2208@TK2MSFTNGP04.phx.gbl... > 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 > |
|
|
|
#5 |
|
Guest
Posts: n/a
|
Re: VBA - Inserting page number on Image Slide
Oh Ok John,
Got your point. I actually want to know how to add the pagenumber on slide. Thanks, Savan "John Wilson" <john@technologytrish.co.uk> wrote in message news:OWjyBsBvIHA.2064@TK2MSFTNGP05.phx.gbl... > 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 > > "Savan Gandhi" <savan_gandhi@persistent.co.in> wrote in message > news:OlY5No%23uIHA.2208@TK2MSFTNGP04.phx.gbl... >> 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 >> > > |
|
|
|
#6 |
|
Guest
Posts: n/a
|
Re: VBA - Inserting page number on Image Slide
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 "Savan Gandhi" wrote: > Oh Ok John, > Got your point. I actually want to know how to add the pagenumber on slide. > > Thanks, > Savan > > "John Wilson" <john@technologytrish.co.uk> wrote in message > news:OWjyBsBvIHA.2064@TK2MSFTNGP05.phx.gbl... > > 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 > > > > "Savan Gandhi" <savan_gandhi@persistent.co.in> wrote in message > > news:OlY5No%23uIHA.2208@TK2MSFTNGP04.phx.gbl... > >> 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 > >> > > > > > > > |
|
|
|
#7 |
|
Guest
Posts: n/a
|
Re: VBA - Inserting page number on Image Slide
Okay. Thanks John.
Thanks, Savan "John Wilson" <john AT technologytrish.co DOT uk> wrote in message news A1F14B8-98A0-41BF-8212-5631728CD85C@microsoft.com...> 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 > > > "Savan Gandhi" wrote: > >> Oh Ok John, >> Got your point. I actually want to know how to add the pagenumber on >> slide. >> >> Thanks, >> Savan >> >> "John Wilson" <john@technologytrish.co.uk> wrote in message >> news:OWjyBsBvIHA.2064@TK2MSFTNGP05.phx.gbl... >> > 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 >> > >> > "Savan Gandhi" <savan_gandhi@persistent.co.in> wrote in message >> > news:OlY5No%23uIHA.2208@TK2MSFTNGP04.phx.gbl... >> >> 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 >> >> >> > >> > >> >> >> |
|
![]() |
| Tags: |
| Thread Tools | |
| Display Modes | |
|
|