I have been trying to change the .text property of a textbox using the following line of VBA code:
Application.ActivePresentation.Slides(1).Shapes(1).TextFrame.TextRange.Text = "File copy completed."
The textbox is the only shape on the slide.
I placed a msgbox() call before and after this line of code and found that the code seems to be stopping when this line is called.
The textbox WILL update correctly if I manually change it to something else before running the code but it will only update once.
If anyone can offer advice I would appreciate it.
Thank you.