Inserting a picture into a running PowerPoint 2000 slide show

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?
 
S

Steve Rindsberg

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")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top