Need an advice!

  • Thread starter Thread starter Edward
  • Start date Start date
E

Edward

Hi everubody,
In a VBA project I need to add clinets logo to my presentations using VBA
some of them might be over 100 slides . I'm thinking to have a placeholder
for logo on the first page that I can paste the logo and then run a macro to
copy the logo on every other slide. Any thoughts that what kind of
placeholder I should use or how should I approach this? I greatly appreciate
any suggestions ...
 
I have to add that because some slides dont need logos I can't use
master/footer , unles there is a way to use VBA and remove those logos from
some slides and leave the rest intact...
 
Hi Edward,

Some things that are fairly obvious to human eyes are difficult to explain
in VBA.

The bottom line comes down to - how does the code know which slides get the
logo (and if it is in variable locations) and where to put them (both in x,y
co-ordinates and layer).

If this can be answered using basic logic, than the rest of the mechanics
are pretty straight forward.

--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
vestprog2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com www.pptfaq.com
..
 
Thanks Steve and Bill . I was thinking if it's possibile to have a hidden
textbox ( or a textbox with hidden symbol ) and when I want to copy the logo
I check each slide to see if that hidden symbol exist skip that particuar
slide and go to the next? Also I wonder is it possible to access a logo if
its part of master using VBA? ( because when the logo or any other object is
part of master we can't select it or delete it but I don't know if VBA can
help us to delete them.) The Idea of having two different masters seems to
work too , Thanks again both of you for your time :)
 
Back
Top