S
St@cy
PP2003
I want to create a button which will ask for a student's name (store for
later) and advance to the third slide in a presentation. The following
compiles but doesn't do anything.
Private Sub NEWUSER_BUTTON_Click()
Dim student As String
student = InputBox("What is your name?")
With ActivePresentation
.GotoSlide 3
End With
End Sub
I want to create a button which will ask for a student's name (store for
later) and advance to the third slide in a presentation. The following
compiles but doesn't do anything.
Private Sub NEWUSER_BUTTON_Click()
Dim student As String
student = InputBox("What is your name?")
With ActivePresentation
.GotoSlide 3
End With
End Sub