Moving from FAST REPORT 3.15 to fr3 4.9
Hi. I used FR3.15 and use to set variables from report with application values a code like that...
int Index;
TfrxVariable* Variable;
Index = frxReport->Variables->IndexOf("firma");
if (Index != -1)
{
Variable = frxReport->Variables->Items[Index];
Variable->Value = QuotedStr(DM->NUME_SOC);
}
In that moment, after install the last FASTREPORT....error when load the report...don't like my code...Please help me ..where is the problem? Thanks.
int Index;
TfrxVariable* Variable;
Index = frxReport->Variables->IndexOf("firma");
if (Index != -1)
{
Variable = frxReport->Variables->Items[Index];
Variable->Value = QuotedStr(DM->NUME_SOC);
}
In that moment, after install the last FASTREPORT....error when load the report...don't like my code...Please help me ..where is the problem? Thanks.
Comments
check to make sure you have enough string delimiter's.
around your string variable value