marshman99ca
Technical User
Using Office 2000, here is the code I am using which works on my laptop with Office 2007. (The textboxes are inserted textboxes not from a userform).
CODE
Option Explicit
Sub Text_Copy()
With Worksheets("Description")
Worksheets("Summary").Shapes.("TextBox3").TextFrame.Characters.Text = .Shapes("TextBox1").TextFrame.Characters.Text & " " & .Shapes("TextBox2").TextFrame.Characters.Text
End With
End Sub
I appreciate any help.
CODE
Option Explicit
Sub Text_Copy()
With Worksheets("Description")
Worksheets("Summary").Shapes.("TextBox3").TextFrame.Characters.Text = .Shapes("TextBox1").TextFrame.Characters.Text & " " & .Shapes("TextBox2").TextFrame.Characters.Text
End With
End Sub
I appreciate any help.