水晶報表列印問題:
reportdocument areportdocument = new reportdocument();
//載入報表
//子報表資料來源
areportdocument.subreports["sonrpt.rpt"].setdatasource(sonds);
//傳遞引數
areportdocument.setparametervalue("name", class.name);
//登入
foreach (table atable in areportdocument.database.tables)
//指定系統預設印表機位報表印表機
printdocument printdc = new printdocument();
areportdocument.printoptions.printername = printdc.printersettings.printername;
//如果沒有上面兩句,預設印表機是在水晶報表中指定的
areportdocument.printtoprinter(1, true, 0, 0);
areportdocument.dispose();
水晶報表列印
1.資料來源的使用,當從外部新增資料庫檔案或更新資料庫檔案時,可以直接將解決方案中的資料庫檔案替換掉,但是如果程式設計介面中用到了資料繫結,涉及到了資料來源的話,如果要將資料來源中的內容也更新的話,可以從伺服器資源管理器中直接拖過來。我太傻了,以前都不知道 2.為報表繫結資料集 3.在報表中如果用到...
水晶報表的列印
using system using system.data using system.configuration using system.collections using system.web using system.web.security using system.web.ui usin...
列印水晶報表流程
列印水晶報表流程 一 資料的查詢與篩選 通過分組查詢 多表聯查等方法查詢出所需要的資料進行列印 二 給水晶報表設計資料來源與模板 在設計水晶報表前得有一系列的準備工作,首先得建立乙個資料夾在資料夾裡建立資料集和安裝水晶報表軟體。圖例 資料夾printreport 將上面查詢出來的資料轉化為datat...