Yes, it is possible to create any report component in RAP. I would first suggest creating any component in Delphi and getting that working, then move the code to RAP. Adding the following code to your Report.BeforePrint event will give you a simple shape.
Comments
Yes, it is possible to create any report component in RAP. I would first
suggest creating any component in Delphi and getting that working, then move
the code to RAP. Adding the following code to your Report.BeforePrint event
will give you a simple shape.
var
lShape: TppShape;
begin
lShape := TppShape.Create(nil);
lShape.Band := Report.HeaderBand;
end;
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com