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