G
Guest
Hello,
I'm trying to start to make an interactive presentation slide show. The user
types his name on the first slide, and his name is repeated on each following
slide.
I'm trying to do this using following code:
Private Sub CommandButton1_Click()
Label1.Caption = " Welcom Mr: " + TextBox1.Text
ActivePresentation.Slides(2).Label1.Caption = " Welcom Mr: " + TextBox1.Text
End With
End Sub
But it doesn't work. Can anybody help me?
Thank you very much.
Regards,
Marion
I'm trying to start to make an interactive presentation slide show. The user
types his name on the first slide, and his name is repeated on each following
slide.
I'm trying to do this using following code:
Private Sub CommandButton1_Click()
Label1.Caption = " Welcom Mr: " + TextBox1.Text
ActivePresentation.Slides(2).Label1.Caption = " Welcom Mr: " + TextBox1.Text
End With
End Sub
But it doesn't work. Can anybody help me?
Thank you very much.
Regards,
Marion