Quick question - Runtime Access
Hi
How could i access my Report's RichView1 component from Delphi at runtime?
I want to access its properties from Delphi code...
Access to report's components @ runtime ...
hope u have understood me...
thanks...
How could i access my Report's RichView1 component from Delphi at runtime?
I want to access its properties from Delphi code...
Access to report's components @ runtime ...
hope u have understood me...
thanks...
Comments
frreport1.finobject('objname');
or in frreport component's on before print eventhandler
if view.name = 'nameofobject then
begin
with classname(view)do
retrieve props here
either way you must declare variables of the correct type to hold the values you retrieve.