problem recognizing ppdaNoRecords as type TppDataPipelineStateType
I am a novice user and I hope I'm posting to the appropriate newsgroup
I am using Delphi 3.0 Client/Server (it may be 3.02)
with ReportBuilder 3.52 Pro
I have a piece of code that's giving me troubles. I have the following
line:
if (plCustomer.State = ppdaNoRecords) then Exit;
where plCustomer is of type TppBDEPipeline.
I also made sure the unit ppTypes is included.
But I am getting an "Incompatible types" compiler error. Am I missing
something? I read the help documentation on TppBDEPipeline and State
and all seems to indicate this should work. What am I doing wrong?
Thanks in advance!
I am using Delphi 3.0 Client/Server (it may be 3.02)
with ReportBuilder 3.52 Pro
I have a piece of code that's giving me troubles. I have the following
line:
if (plCustomer.State = ppdaNoRecords) then Exit;
where plCustomer is of type TppBDEPipeline.
I also made sure the unit ppTypes is included.
But I am getting an "Incompatible types" compiler error. Am I missing
something? I read the help documentation on TppBDEPipeline and State
and all seems to indicate this should work. What am I doing wrong?
Thanks in advance!
This discussion has been closed.
Comments
if (ppdaNoRecords in plCustomer.State) then
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com