i use the following code in the GetValue property of a description field. The description field is a member of a PageFooterBand.
Code: Select all
string WeitereLagerorte = "";
string AKL = AUFTRAGSKOPF.PICKS_AKL.ToString();
if (AKL != "0") {
WeitereLagerorte = "AKL, ";
}
string ML0 = AUFTRAGSKOPF.PICKS_ML0.ToString();
if (ML0 != "0") {
WeitereLagerorte += "ML0, ";
}
string ML1 = AUFTRAGSKOPF.PICKS_ML1.ToString();
if (ML1 != "0") {
WeitereLagerorte += "ML1, ";
}
Text19.TextValue = WeitereLagerorte;
On the second page the result was e.g. AKL, ML1,
The field in the PageFooterBand on the first page is empty.
I think, during generating the first page of the report the result of the description field (Text19) is not calculated.
How can I solve the problem?
Thanks Coyote