procedure treportform.printfooterreport2(sender: tobject);begin
with sender as tbasereport do
begin
setfont('times new roman',8);
//呼叫tbasereport元件的setfont方法設定列印的字型和大小
marginbottom := 0.5;
//設定報表的底部邊界寬度
printfooter('第' + inttostr(currentpage)+'頁',pjleft);
//列印報表的頁號
printfooter('2023年2月16日',pjright);
//列印報表的日期
marginbottom := 1.0;
end;
end;
水晶報表的列印
using system using system.data using system.configuration using system.collections using system.web using system.web.security using system.web.ui usin...
簡單實用的列印報表
頁面如上,我想看了你應該知道怎麼辦吧,只要提取源就可以了。後台頁面 主要是填寫所需的資訊 this.descrption.text datatable dt data.tables 0 for int i 0 i this.descrption.text dt.rows i productnm to...
列印報表的列標題
procedure treportform.onnewcolumnreport2 sender tobject caption string begin with sender as tbasereport do begin underline true case i of 其中i為integer型...