关于REPORT BUILDER 5.0的一个问题!(100分)

  • 主题发起人 主题发起人 czonghui
  • 开始时间 开始时间
C

czonghui

Unregistered / Unconfirmed
GUEST, unregistred user!
本人正在制作报表生成器,希望打印用户选择的数据库字段,但是在rb 5.0中
的Header band 中创建ppLabel时,无法设置ppLabel的Parent属性,查其
源码发现Parent属性是只读的。
各位专家,怎样才能在rb 5.0中动态创建组件?
(不使用预设组件再,将其visible、Enable属性设为true、false的办法)
 
太简单了,看着:
procedure button1click;
var la:TppLabel;
begin
la:=TppLabel.Create(Self);
la.Band:=HeaderBand1;
la.Caption:='Add';
……
end;
关键是其有一个Band属性
本代码在Delphi 5.0 ,最新版Report Builder下编译通过。
 
Band is Essencially the Parent of The component
 
多人接受答案了。
 
后退
顶部