I have a basic idea of how this might be done, but hopefully the insight provided here can give me a good method of solidifying the results.
What i’d like to do is create a text-box that is regularly fed status updates for a lengthy process. I know that I can disable the scroll bars on a text-box, but my question is, how can I keep the focus on any items currently being added by the process? If I use the following:
Sub NoteWorthy()
tbStatusUpdate.value = tbStatusUpdate.value + “Some Added Status Here.”
End Sub
It’ll add tons of stuff to the box, but it drops everything at the bottom, out of visual range.
Thanks!