Inserting a picture into a running PowerPoint 2000 slide show

  • Thread starter Thread starter grahamlmail-stuff
  • Start date Start date
G

grahamlmail-stuff

I want users to be able to add a picture of themselves into a running
PowerPoint (2000) slide show.

What I have been using is:

Slide2.Image1.Picture = LoadPicture("G:\me.jpg")

But not every computer sees the memory stick as drive G:.

Does anyone know how to let the user choose the picture?

In edit mode you can place a picture in an Image box. When you do you
can select the picture via the Load Picture dialog box. Does any one
know how to invoke this dialog box?
 
I want users to be able to add a picture of themselves into a running
PowerPoint (2000) slide show.

What I have been using is:

Slide2.Image1.Picture = LoadPicture("G:\me.jpg")

But not every computer sees the memory stick as drive G:.

But will the presentation always be running from the memory stick?
If so, you can use

LoadPicture(ActivePresentation.Path & "\" & "me.jpg")
 
Back
Top