The way I've been finding a string in text is a slow way.
Here's how I would:

For I = 1 to Len(rtbFile.txt)
If Mid(rtbFile.txt, I, 9) = "Something" then
'Found Text
End if
Next I

I know this a slower way than normal. How would I find a string faster than using this method?

Thank you for any help

-Justin Gomes
[email protected]