Barcode Tag Editor
hi everyone!
on rave reports i made a barcode print with an customized tag editor using RVSystem to create x or y collums, barcode height and wigth specified by user, etc...
now i want to do the same thing in fast, and i found this on internet, but i dont know how to implement it:
procedure codigo_barras(t,l:integer);
begin
with tfrxbarcodeview.create(masterdata1) do
begin
bartype := bccode_2_5_interleaved;
zoom := 1.3;
top := t + 325;
left := l + 0;
width := 162;
height := 45;
dataset := masterdata1.dataset;
datafield := '_CODIGOBARRAS';
parent := masterdata1;
showtext := false;
end;
end;
anyone can help me?
on rave reports i made a barcode print with an customized tag editor using RVSystem to create x or y collums, barcode height and wigth specified by user, etc...
now i want to do the same thing in fast, and i found this on internet, but i dont know how to implement it:
procedure codigo_barras(t,l:integer);
begin
with tfrxbarcodeview.create(masterdata1) do
begin
bartype := bccode_2_5_interleaved;
zoom := 1.3;
top := t + 325;
left := l + 0;
width := 162;
height := 45;
dataset := masterdata1.dataset;
datafield := '_CODIGOBARRAS';
parent := masterdata1;
showtext := false;
end;
end;
anyone can help me?
Comments