I tried:
ActivePresentation.Slides(6).TextBox1.Value = "" and also tried
ActivePresentation.Slides(6).Shapes("TextBox1").Value = ""
but none of them is working.
The textbox are in the range of slides 6 to 18, one textbox in each of it.
The user fills the textbox while the presentation is runing; it is necessary
an initialize procedure to clean the textbox at the begining of the
presentation.
ActivePresentation.Slides(6).Shapes("TextBox1").OLEFormat.Object.Value = ""
--
john ATSIGN PPTAlchemy.co.uk
Custom vba coding and PPT Makeovers
Free PPT Hints, Tips and Tutorials
http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html
For i = 6 To 20
ActivePresentation.Slides(i).Shapes("TextBox1").OLEFormat.Object.Value = ""
Next i
to get all slides that have the TextBox1.