Dim TextToFind as string
TextToFind = "Start to day"
With rtb
.SelStart = .Find(Texttofind)' Change to the word to find
.SelLength = Len(TextToFind)
MsgBox .SelText
text1 = .Seltext
.SelText = "" 'delete the text ?
End With
This works fine for finding the first string, but i'm trying to delete the 2nd occurance. How?