Ciao,
io ho usato delle API per settare la posizione (mi servivano infondo):
const int WM_VSCROLL = 277;
const int SB_BOTTOM = 7;
[DllImport("User32.dll", CharSet = CharSet.Auto, EntryPoint = "SendMessage")]
static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);
e lo usavo così:
SendMessage(miatext.Handle, WM_VSCROLL, new IntPtr(SB_BOTTOM), new IntPtr(0));
Guarda se qui puoi trovare qualcosa di utile: http://msdn.microsoft.com/en-us/library/bb787577(VS.85).aspx
Ciao.
Matteo Raumer
[MVP Visual C#]
http://blogs.dotnethell.it/freeteo