本文介绍了如何从SDI应用程序的CFormView打印ListCtrl的数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

谁能让我知道从SDI应用程序的CFormview打印编辑框或listctrl数据的方法吗?

Hello All,

Can anyone let me know a way to print data of edit box or listctrl from CFormview of SDI Application?

推荐答案



{
...
  CRect crLocation(0, 0, 1000, 1000);
  pDC->Rectangle(crLocation);
  crLocation.DeflateRect(20, 20, 20, 20);
 
  CString cszTest(_T("this is a long test line to be printed here and now :)"));
  pDC->DrawText(cszTest,
                crLocation,
                DT_LEFT | DT_NOPREFIX | DT_TOP | DT_WORDBREAK);
...
}


这篇关于如何从SDI应用程序的CFormView打印ListCtrl的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 18:10