textbox cursor position???
i never needed to know this until now ...

if i wanted to put text to a textbox all i would have to do was

text1.text = "hello"

and if i ever wanted to to put a line below that i would go

text1.text = "hello" & vbcrlf & "world"

however, now i need to insert words in the textbox with a command button ... i need it to insert the text where the blinking cursor is in the textbox ...

can anyone help?