|
试一下设置CEdit的AutoVScroll属性为TRUE,Vertical Scroll属性为TRUE,
m_CEdit.SetSel(m_iCursorStart,m_iCursorEnd);
- CString temp;
- for (int i=0;i<2000;i++)
- {
- CString temp1;
- temp1.Format(_T("%d"),i);
- temp+=temp1;
- }
- int m_iCursorStart=0;
- int m_iCursorEnd=temp.GetLength();
- m_CEdit.SetWindowText(temp);
- m_CEdit.SetSel(m_iCursorStart,m_iCursorEnd);
复制代码
我试了可以 |
|