Hi,
There is a attribute called ATTR_FIRST_VISIBLE_LINE that you can use to control the scroll bars. You set this attribute with the SetCtrlAttribute(,,,) on the control and the number that you pass is the first line that will be shown; just pass 0 and your scroll bar should go to the top.
To send data to the textbox without updating would require some tricks. One option is not to update the values in a callback, this way the draw events willbe suspended while the data is being sent to the text box; the problem here is that the UI becomes unresponsive in the mean time. Another option is to hide the textbox, send the data, put the scroll bar back at the top and show the text bow again; if you do this in a call back the screen will not flicker or anything and the us
er will not even notice that data is being added.
I hope this helps, let me know if you have any further questions.
Regards,
Juan Carlos
N.I.