Access fields of dataset in the code.
Let's say i have a dataset ds with resulting fields: Name, Address, Telephone, BillAmount.
How can I access the field BillAmount?
I need it for some calculations. Can't seem to find it in the documentation.
Thanks.
How can I access the field BillAmount?
I need it for some calculations. Can't seem to find it in the documentation.
Thanks.
Comments
in the internal code of the report, typically in the obp event of a band
<ds."fieldname">
thanks gordk.
i put the <ds."fieldname"> inside obp event but I am getting
Unknown variable or datafield. error.
the dataset is from a TfrxSDQuery using Report.GetDatset().
Why am i getting this error?
<YourRealDatasetName."YourRealFieldName">