我正在使用DevXpress 14。 我想只使用一个包含DocumentVier的表单名称“FrmViewer”来加载我想要的任何报告。 这是代码,数据源不是null(已调试),但消息是“文档不包含页面”。我想我错过了documentViewer开始打印的一些方法
public FrmViewer(PhieuNhap pn)
{
InitializeComponent();
RptPhieuNhap rpt = new RptPhieuNhap();
rpt.DataSource = pn.ChiTietPhieuNhap;
rpt.nhacungcap.Value = pn.NhaCungCap.TenCC;
rpt.sophieu.Value = pn.SoPhieu;
documentViewer1.PrintingSystem = rpt.PrintingSystem;
}
答案 0 :(得分:0)
您很可能需要调用rpt.CreateDocument();
请点击此处了解更多详情: https://www.devexpress.com/Support/Center/Question/Details/Q528191