fastreport问题:怎么设置图纸的大小啊???(10分)

  • 主题发起人 主题发起人 ahhliang
  • 开始时间 开始时间
A

ahhliang

Unregistered / Unconfirmed
GUEST, unregistred user!
比如说我要设置成20mm*60mm?
 
设置报表纸张为自定义就可以了
高MM宽MM
 
我的fastreport怎么没有自定义为灰色啊??
是不是我的版本没有破解?
 
fastreport有源码版的下载啊
那还用破解啊
www.2ccc.com看看
还找不到就找我吧
呵呵
 
我的fastreport怎么没有自定义为灰色啊??
与打印机的型号以及驱动有关
 
盛利, 把带原码的版本发给我吧!谢谢!
ahhliang@yeah.net
 
fastreport原代码已发
 
不好意思你的邮箱已满
白忙了!
 
我的找了好久也没有找到如意的?用代码怎样设纸张的大小?不管是fr还是RM都可以?
 
呵呵搞出来了,先做好,导出来
procedure TForm1.Button1Click(Sender: TObject);
var rect:trect;
begin
frReport1.LoadFromFile('1.frf');
// frReport1.Pages[0].pgSize
rect:=frReport1.Pages[0].pgMargins ;
edit1.Text := inttostr(rect.Left );
edit2.Text := inttostr(rect.top );
edit3.Text := inttostr(rect.right );
edit4.Text := inttostr(rect.Bottom );
edit5.Text := inttostr( frReport1.Pages[0].pgSize );
end;
 
將打印機設為虛擬的打印機, 然後選用戶自定紙張大小.
 
后退
顶部