SendMessage(AHandle, WM_VSCROLL, SB_BOTTOM, null);
AHandle为实例的句柄。

解决方案 »

  1.   

    //参考下如下的代码:
    private void button1_Click(object sender, System.EventArgs e)
    {
    SelfSrcoll(this.richTextBox1.Handle);
    }private const int WM_VSCROLL  = 0x115;
    private const int SB_LINEUP = 0;
    private const int SB_LINEDOWN = 1;
    private const int SB_PAGEUP = 2;
    private const int SB_PAGEDOWN = 3;[System.Runtime.InteropServices.DllImport("user32.dll")]
    public static extern int SendMessage(IntPtr hwnd  ,int wMsg ,int wParam ,int  lParam );[System.Runtime.InteropServices.DllImport("user32.dll")]
    public static extern bool UpdateWindow(IntPtr hWnd);private void SelfSrcoll(IntPtr handle)
    {
    SendMessage(handle, WM_VSCROLL, SB_PAGEDOWN,0);
    UpdateWindow(handle);
    }
      

  2.   

    还如如下可参考用的数据:
    private const int SB_TOP = 6;
    private const int SB_BOTTOM = 7;
      

  3.   

    jun_ly(小鱼儿) 
    的是正解