用Ehlib二次開發報表列印程式,實現財務憑證的列印(三) (轉)
4、列印表頭,我將表頭的各個部分劃成了幾部分,如我的憑證列印的地方,我就劃成了五部分,每部分按佔百分比多少計算。如編制單位就佔頁面寬度的40%等
procedure TF_printpreview.printpageheader(pageheader: Tstrings);
var
Headrect:Trect;
count:integer;
begin
pp_pz.Printer.Canvas.Font.Name:='宋體';
pp_pz.Printer.Canvas.Font.Color:=clblack;
pp_pz.Printer.Canvas.Font.Size:=9;
pp_pz.Printer.Canvas.Font.Style:=[];
gettextinfo;
Amountprint:=Amountprint+round(0.8*textheight);//當前邏輯尺的位置
for count:=0 to pageheader.Count-1 do
begin
case count of
0:
HeadRect:=Rect(round(pp_pz.Printer.PageSet.LeftMargin),Amountprint,round(pp_pz.Printer.PageSet.LeftMargin+round(0.4*(pp_pz.Printer.PageWidth))),Amountprint+textheight);//編制單位比例
1:
HeadRect:=Rect(headrect.Right,Amountprint,headrect.Right+round(0.16*(pp_pz.Printer.PageWidth)),Amountprint+textheight);//憑證日期比例
2:
HeadRect:=Rect(headrect.Right,Amountprint,headrect.Right+round(0.14*(pp_pz.Printer.PageWidth)),Amountprint+textheight);//帳套號比例
3:
HeadRect:=Rect(headrect.Right,Amountprint,headrect.Right+round(0.2*(pp_pz.Printer.PageWidth)),Amountprint+textheight);//憑證號比例
4:
HeadRect:=Rect(headrect.Right,Amountprint,headrect.Right+round(0.1*(pp_pz.Printer.PageWidth)),Amountprint+textheight);//分頁數號比例
end;
pp_pz.Printer.Canvas.TextOut(Headrect.left,headrect.top,pageheader[count]);
end;
end;
5、列印表格頭
procedure TF_mxzprint.printdetailheader(detailheader: Tstrings);
var
drect,srect,ct:Trect;
begin
pp_pz.Printer.Canvas.Font.Name:='宋體';
pp_pz.Printer.Canvas.Font.Color:=clblack;
pp_pz.Printer.Canvas.Font.Size:=9;
pp_pz.Printer.Canvas.Font.Style:=[];
gettextinfo;
Amountprint:=Amountprint+textheight;
pp_pz.Printer.Canvas.Font.Size:=11;
drect:=rect(PageRect.Left,Amountprint,PageRect.Left+round(0.3*(PageRect.Right-PageRect.Left)),Amountprint+2*textheight);
drawtext(pp_pz.Printer.Canvas.handle,pchar('摘 要'),length('摘 要'),drect,DT_center or DT_WORREAK or DT_VCENTER or DT_SINGLELINE);
addpolyline([drect.left,drect.top,drect.right,drect.top,drect.right,drect.bottom,drect.left,drect.bottom,drect.left,drect.top]);
drect:=rect(drect.right,drect.Top,drect.right+round(0.4*(PageRect.Right-PageRect.Left)),srect.Bottom);
drawtext(pp_pz.Printer.Canvas.handle,pchar('科目名稱'),length('科目名稱'),drect,DT_center or DT_BREAK or DT_VCENTER or DT_SINGLELINE);
addpolyline([drect.left,drect.top,drect.right,drect.top,drect.right,drect.bottom,drect.left,drect.bottom,drect.left,drect.top]);
drect:=rect(drect.right,drect.Top,drect.right+round(0.15*(PageRect.Right-PageRect.Left)),srect.Bottom);
drawtext(pp_pz.Printer.Canvas.handle,pchar('借方金額'),length('借方金額'),drect,DT_center or DT_WORDBREAK or DT_VCENTER or DT_SINGLELINE);
addpolyline([drect.left,drect.top,drect.right,drect.top,drect.right,drect.bottom,drect.left,drect.bottom]);
drect:=rect(drect.right,drect.Top,drect.right+round(0.15*(PageRect.Right-PageRect.Left)),srect.Bottom);
addpolyline([drect.left,drect.top,drect.right,drect.top,drect.right,drect.bottom,drect.left,drect.bottom,drect.left,drect.top]);
drawtext(pp_pz.Printer.Canvas.handle,pchar('貸方金額'),length('貸方金額'),drect,DT_center or DT_WORDBREAK or DT_VCENTER or DT_SINGLELINE);
addpolyline([drect.left,drect.top,drect.right,drect.top,drect.right,drect.bottom,drect.left,drect.bottom]);
Amountprint:=amountprint+drect.Bottom-drect.Top;//+textheight;
end;
5、列印表格內容
(與上面相似,程式碼太多,略。。。)
6、列印彙總欄內容(程式碼較多,而且也相似,略)
7、列印功能
pp_pz.Printer.BeginDoc;
依次列印標題、列印、表頭等
PolyPolyline(pp_pz.Printer.Canvas.Handle,PolyPolyPoints.List^,PolyLengths.List^,PolyLengths.Count); pp_pz.Printer.EndDoc;
關鍵:就兩個PolyPolyline和DrawText而已!
請注意,我這是連載,我發現我最後一貼看的人比較多,可光看這篇基本上看不出什麼來的。管理員沒有發表我的第一篇,我現在把第一篇放到了連(二)裡面去了,所以大家不要找連載(一)了!由於時間比較忙,所以有一部分朋友要求要原始碼還沒來的及整理,但我一整理出來我就會發過去的,謝謝大家!
好了,如果大家需要原始碼可以向我索取,to:yczyk@163.com">yczyk@163.com
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-993016/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 如何實現報表的批次列印需求
- 如何實現報表直接列印需求
- ASP環境下輕鬆實現報表的列印 (轉)
- c#之tcbs 列印憑證示例C#
- 關於WEB應用程式的列印元件開發初探 (轉)Web元件
- 在ASP程式中列印Excel報表的新方法 (轉)Excel
- 用js實現列印九九乘法表JS
- J2EE中列印報表怎麼實現
- 在C#裡實現DATAGRID的列印預覽和列印 (轉)C#
- SAP MM 事務程式碼MRKO觸發的財務憑證不會出現在PO History裡
- 前端實現列印前端
- .NET中列印Excel報表程式碼例項Excel
- 利用VC++開發所見即所得的列印程式 (轉)
- fastreport .net列印普通報表AST
- 備忘錄——基於rdlc報表實現列印產品標籤
- 微服務開發系列:如何列印好日誌微服務
- Visual C++ 6.0程式設計實現列印功能(轉)C++程式設計
- 實現類似IE的列印網頁功能 (轉)網頁
- 在java中實現對FORM的列印功能 (轉)JavaORM
- 財務系統憑證輸入設計
- 網際網路+列印的印萌自助列印系統,憑什麼給傳統列印店增加50%營收?營收
- 用程式設定列印紙張型別 (轉)型別
- 校園小型列印店,如何實現列印智慧自助化?
- Linux系統中掃描、列印的實現(轉)Linux
- 用printer物件列印表格 (轉)物件
- 財務報表分析
- 使用儲存過程實現分頁列印 (轉)儲存過程
- pb實現列印中人民幣大寫 (轉)
- 利用python列印實現九九乘法口訣表Python
- VC列印實踐淺談 (轉)
- 在VC中所見即所得列印的簡易實現 (轉)
- web 實現分頁列印功能Web
- javascript實現區域性列印程式碼例項JavaScript
- 印表機怎麼取消列印任務 取消印表機列印任務的方法
- 外賣小程式對接飛鵝小票列印的實現
- 基於VB和EXCEL的報表設計及列印Excel
- 印表機如何取消列印任務 印表機列印任務刪不掉
- python 列印 ASCII表PythonASCII