public sub InsertText(iInsPoint as Integer, sInsString as String)
rtBox.text = rtBox.text.substring(0,iInsPoint) & sInsString & rtBox.text.substring(iInsPoint+1,rtBox.text.lenght-(iInsPoint+1))
end sub
That should take the first half ("The ") of your text append your new text ("Quick Brown ") and then add the last half ("Fox")
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.