MasterData band with MemoView
Hi
I'm trying another tack to build a report from code.
Create a TfrxMasterData
Add a TfrxMemoView to the master data above
Fill the memo with text.
I can get this to show in the report preview but the master data doesn't expand vertically like it would if connected to a dataset. What am I doing wrong?
Thanks
I'm trying another tack to build a report from code.
Create a TfrxMasterData
Add a TfrxMemoView to the master data above
Fill the memo with text.
I can get this to show in the report preview but the master data doesn't expand vertically like it would if connected to a dataset. What am I doing wrong?
Thanks
Comments
Yes I had those two options set. What fixed the issue in the end was setting:
1) MasterData.RowCount := 1;
2) MemoView.StretchMode := smMaxHeight;
Thanks for the response though.