toggle menu
FastReport Forum
FastReport Forum
Categories
Discussions
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Activity
Sign In
·
Register
×
Home
›
Fast Reports Products
›
FastReport 4.0
How change GroupHeader condition parameters at report runtime
felipeiw
June 2014
edited 11:13PM
in
FastReport 4.0
how to do?
in which event?
I am using version 4.
thanks
Comments
gordk
St.Catherines On. Canada.
June 2014
edited 11:13PM
from delphi
after loading the report and before calling show report
use the findobject method to get the band and modify its properties.
felipeiw
June 2014
edited 11:13PM
thanks
Could you give me an example ?
Please
gpi
June 2014
edited 11:13PM
frxReport1.LoadFromFile('C:/test.fr3');
TfrxGroupHeader(frxReport1.FindObject('GroupHeader1')).Condition := 'Copy(<Customers."Company">, 1, 1)';
frxReport1.ShowReport;
Leave a Comment
Paragraph
H2
Toggle Heading Menu
List Unordered
Toggle Heading Menu
Quote
Toggle Heading Menu
Paragraph
Paragraph
H2
Heading 2
H3
Heading 3
H4
Heading 4
H5
Heading 5
List Unordered
Bulleted List
List Ordered
Ordered List
Indent
Indent
Outdent
Outdent
Quote
Quote
Paragraph Code Block
Code Block
Spoiler
Spoiler
Bold
Italic
Strikethrough
Paragraph Code Block
Link
Close
Emoji
Embed
Home
•
FastReport 4.0
Comment As ...
Comments
after loading the report and before calling show report
use the findobject method to get the band and modify its properties.
Could you give me an example ?
Please
TfrxGroupHeader(frxReport1.FindObject('GroupHeader1')).Condition := 'Copy(<Customers."Company">, 1, 1)';
frxReport1.ShowReport;