I am trying to concatenate a URL with many different parts(variables) added to the end of the URL.
I have a button and when you click the button it will takes you to the a specific site using the slide index of the current slide.
When the button is click I want it to go to "google.com/p" + Slide.Index + slide.ID + ActivePresentation.fileName
I know the syntax aren't correct but hopefully you get the GIST.
Currently I have this code:
Private Sub CommandButton21_Click()
Dim projId AS Integer = 617
Dim URL AS String = "www.google.com"
Dim coID = "m01"
Dim coTitle AS String = "New CC Project"
Dim oSl As Slide
Dim pgId
ActivePresentation.FollowHyperlink _
Address:="http://google.com/p" + oSl.SlideID
NewWindow:=True, AddHistory:=True
End Sub
Thanks in advance
This should get you a bit closer: