Powerpoint webbrowser

P

perR

I want to display a webpage from a slide. To do that I'm using the
Microsoft Active-X Webbrowser at one of the slides in my presentation.
When the slide opens the active-X shows nothing. I've added a button to
the slide with the following code :
Private Sub ShowWEB_Click()
WebBrowser1.Navigate "http://www.google.no/"
End Sub
This works fine, but I want active-X to show the web page without
automatically. I've managed to do that also by using the following code
in a class module :
Public WithEvents App As Application

Private Sub App_SlideShowBegin(ByVal Wn As SlideShowWindow)
Slide1.WebBrowser1.Navigate "http://www.google.no/"
End Sub

This only works for the first slide. Please help!
 

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