VS 中的EDIT Control 控件的问题

airchensu   2010-5-12 12:46 楼主
VS Edit Control 控件的编辑框滚动条动往下滚  
随着内容的增加 而自动往下滚动

怎么设置

回复评论 (3)

帮你顶
点赞  2010-5-14 10:47
百度或GOOGLE

找本VS的书籍看下吧。

帮顶下。
点赞  2010-5-14 14:32
试一下设置CEdit的AutoVScroll属性为TRUE,Vertical Scroll属性为TRUE,
m_CEdit.SetSel(m_iCursorStart,m_iCursorEnd);

  1.         CString temp;
  2.         for (int i=0;i<2000;i++)
  3.         {
  4.                 CString temp1;
  5.                 temp1.Format(_T("%d"),i);
  6.                 temp+=temp1;
  7.         }
  8.         int m_iCursorStart=0;
  9.         int m_iCursorEnd=temp.GetLength();
  10.         m_CEdit.SetWindowText(temp);
  11.         m_CEdit.SetSel(m_iCursorStart,m_iCursorEnd);


我试了可以
点赞  2010-5-14 16:25
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复