Hi,
I'm new to Stimulsoft Report I have 2 questions
1- How to Set a Text in a DataBand to be multiline ?
2- Sometimes when I design a report with a Text in a DataBand and I print it after registering its DataSource I see only the first record, in other reports it works fine ! I can't tell what I'm doing wrong,
what setting I have to set in order to see the rest of the records ?
Thanks
MutiLine Text
MutiLine Text
Hello,
Thank you.
Please set WordWrap and CanGrow properties to true.1- How to Set a Text in a DataBand to be multiline ?
Please check that you assign DataSource to this DataBand.2- Sometimes when I design a report with a Text in a DataBand and I print it after registering its DataSource I see only the first record, in other reports it works fine ! I can't tell what I'm doing wrong,
what setting I have to set in order to see the rest of the records ?
Thank you.
MutiLine Text
Hello,
Quote:
1- How to Set a Text in a DataBand to be multiline ?
Please set WordWrap and CanGrow properties to true.
Worked Perfectly Thanks
Quote:
2- Sometimes when I design a report with a Text in a DataBand and I print it after registering its DataSource I see only the first record, in other reports it works fine ! I can't tell what I'm doing wrong,
what setting I have to set in order to see the rest of the records ?
Please check that you assign DataSource to this DataBand.
_______
I assign DataSource at run time as follows
frm.stiReport1.RegData("Ballance", this.BallanceTable);
frm.stiReport1.Dictionary.Synchronize();
frm.stiReport1.Dictionary.DataSources[0].Name = "Ballance";
frm.stiReport1.Dictionary.DataSources[0].Alias = "Ballance";
at report Designe I do the Following in DataField
{Ballance.Value}
When I print report only First Record shows
Thank you in Advance
Quote:
1- How to Set a Text in a DataBand to be multiline ?
Please set WordWrap and CanGrow properties to true.
Worked Perfectly Thanks
Quote:
2- Sometimes when I design a report with a Text in a DataBand and I print it after registering its DataSource I see only the first record, in other reports it works fine ! I can't tell what I'm doing wrong,
what setting I have to set in order to see the rest of the records ?
Please check that you assign DataSource to this DataBand.
_______
I assign DataSource at run time as follows
frm.stiReport1.RegData("Ballance", this.BallanceTable);
frm.stiReport1.Dictionary.Synchronize();
frm.stiReport1.Dictionary.DataSources[0].Name = "Ballance";
frm.stiReport1.Dictionary.DataSources[0].Alias = "Ballance";
at report Designe I do the Following in DataField
{Ballance.Value}
When I print report only First Record shows
Thank you in Advance
MutiLine Text
Hello,
I used the following and it works perfectly
frm.TranRep.RegData("Ballance", this.BallanceTable);
frm.TranRep.Dictionary.Synchronize();
frm.TranRep.Dictionary.DataSources[3].Name = "Ballance";
frm.TranRep.Dictionary.DataSources[3].Alias = "Ballance";
Stimulsoft.Report.Components.StiDataBand band = frm.TranRep.GetComponents()["DataBand2"]
as Stimulsoft.Report.Components.StiDataBand;
band.DataSourceName = "Ballance";
Thanks
I used the following and it works perfectly
frm.TranRep.RegData("Ballance", this.BallanceTable);
frm.TranRep.Dictionary.Synchronize();
frm.TranRep.Dictionary.DataSources[3].Name = "Ballance";
frm.TranRep.Dictionary.DataSources[3].Alias = "Ballance";
Stimulsoft.Report.Components.StiDataBand band = frm.TranRep.GetComponents()["DataBand2"]
as Stimulsoft.Report.Components.StiDataBand;
band.DataSourceName = "Ballance";
Thanks
MutiLine Text
Hello,
Thank you for letting us know about this.
Thank you for letting us know about this.