TestFlyJets
TestFlyJets
About
- Username
- TestFlyJets
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
You can use the FindObject() method, like this, where MyReport is a reference to a TfrxReport object: var Band: TfrxBand; begin Band := MyReport.FindObject('MasterBand1') as TfrxBand; end; All you need is the name of the object. Chris
-
If you have a TfrxPictureView in your FastReport called MyPicture you can use this code in Delphi. It assumes that you've used FindObject() or some other method to get the reference to MyPicture: MyPicture.Picture.LoadFromFile(form1.image1.pictu…