1
I am trying to change the text within the Word Text Box. I am not using any Activex for this, it is the normal Word text box same. How do I do this by programming by VBA?
I can make changes to the normal texts I write by Word, but when the text is inside a Text Box, I cannot change it by this method. I did so to change the normal texts:
With ActiveDocument.Content.Find
.Text = "Estado Civil"
.Forward = True
.Execute
.Replacement.Text = "###"
.Execute Replace:=wdReplaceAll, Forward:=True
End With
I searched through various documentations and tutorials and found nothing. Thank you in advance!
Thank you very much!!!!!!
– Shoy
Hello the best way to thank is to validate the answer. I’m glad it helped
– Sérgio Sereno
I think I got it validated, I don’t know how to use Stackoverflow yet
– Shoy