mrih7
11-23-2013, 08:02 PM
I'm getting beyond frustrated at this point with this so any help would be greatly appreciated.
Office 2010
I'm trying to create a loop where selecting a button on the first slide will update text boxes across the PPT. These updated textboxes start on slide 4 and go onward. Now not all slides will have this textbox, but most will. (An example in non-loop form is included below). Does anyone know a good way to do this?
Private Sub Submit1_Click()
Slide1.userName.Text = Slide4.userName.Text
Slide1.userName.Text = Slide5.userName.Text
Slide1.userName.Text = Slide6.userName.Text
Slide1.userName.Text = Slide7.userName.Text
'...etc will continue to .Slides.Count
End Sub
Office 2010
I'm trying to create a loop where selecting a button on the first slide will update text boxes across the PPT. These updated textboxes start on slide 4 and go onward. Now not all slides will have this textbox, but most will. (An example in non-loop form is included below). Does anyone know a good way to do this?
Private Sub Submit1_Click()
Slide1.userName.Text = Slide4.userName.Text
Slide1.userName.Text = Slide5.userName.Text
Slide1.userName.Text = Slide6.userName.Text
Slide1.userName.Text = Slide7.userName.Text
'...etc will continue to .Slides.Count
End Sub