G
Greg Maxey
My understanding is you had a problem finding a tag and replacing it
with a long sting (>255 characters).
I think we agree that this will solve that problem without using the
users clipboard:
Sub Test1()
Dim oRng As Word.Range
Set oRng = ActiveDocument.Range
With oRng.Find
.Text = "<Additional_Info>"
While .Execute
oRng.Text = String(256, "1")
oRng.Collapse wdCollapseEnd
Wend
End With
End Sub
Other than theorectical debate about greater or lesser solutions, what
answer or other information are you looking for in this discussion?
with a long sting (>255 characters).
I think we agree that this will solve that problem without using the
users clipboard:
Sub Test1()
Dim oRng As Word.Range
Set oRng = ActiveDocument.Range
With oRng.Find
.Text = "<Additional_Info>"
While .Execute
oRng.Text = String(256, "1")
oRng.Collapse wdCollapseEnd
Wend
End With
End Sub
Other than theorectical debate about greater or lesser solutions, what
answer or other information are you looking for in this discussion?