Follow HyperLink In 2003 VS 2007

S

Sonbelt

Hi,

I have a PowerPoint solution I'm working on that needs to be 2003 & 2007
compliant. I have a form with a label with the Click assigned to follow a
hyperlink so the user can download a zip file. As a PPT it works fine in
both 03 & 07 but as a PPA it only works in 2003.

On the 2007 computer I have the macro security settings set to accept all
macros.

Can you help me please?

Greg


Private Sub lblDownLoadTemplate_Click()
On Error GoTo errhandler
ActivePresentation.FollowHyperlink _
Address:="http://MyDomainName.Com/MyZipFile.zip", _
NewWindow:=True, AddHistory:=True
Exit Sub
errhandler:
varMessage = "There was a problem downloading the zip file. " _
& "An Internet connection is required to download the file or the
website " _
& "may be unavailable at this time."
MessageBox varMessage

End Sub
 

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