PDA

View Full Version : Text copying to another slide



Guyver4
03-07-2020, 03:28 AM
Hello

I would be grateful if anyone can help me with this. I have Office 365, I basically want to copy text from a input textbox to another one on another slide. In Word I would use something like:
TextBox2.Text = TextBox1.Text

However in PowerPoint when I try this I get an error Run-time error 424 Object required.
Any ideas? Thanks.

Guyver4
03-07-2020, 12:09 PM
It it okay I worked it out, I had to refer to the slide number i.e.
ActivePresentation.Slides(2).Shapes("JobName").TextFrame.TextRange = Me.JobNameInputEntry.Value

Where the textbox JobName on slide 2 takes the name entered in the textbox JobNameInputEntry in slide 1.

ZackENG
05-27-2020, 05:51 AM
Wow, this is so hard:wot