TfrxBarCodeView: what to put in USES clause?
Fast Reports Newbie here.
I want to do this:
****
var
BarCode : TfrxBarCodeView;
begin
BarCode := frxReportUserLoginBarCode.FindObject('BarCodeEmpLogin') as TfrxBarCodeView;
BarCode.Text := 'Testing';
******
I have a TfrxReport component on the form and it has a report in it, with a BarCodeView as shown above.
But it wants somethin else in the uses clause to identify the TfrxBarCodeView reference.
What do I put in the USES clause?
Also, where would I have found this information?
Thanks,
Mark
I want to do this:
****
var
BarCode : TfrxBarCodeView;
begin
BarCode := frxReportUserLoginBarCode.FindObject('BarCodeEmpLogin') as TfrxBarCodeView;
BarCode.Text := 'Testing';
******
I have a TfrxReport component on the form and it has a report in it, with a BarCodeView as shown above.
But it wants somethin else in the uses clause to identify the TfrxBarCodeView reference.
What do I put in the USES clause?
Also, where would I have found this information?
Thanks,
Mark
Comments
Thanks.
Mark