Contents - Index


CheckBarCode, LastPaintError, LastPaintErrorText method example

begin
Ean.TypBarcode := bcEan13;
if Ean.CheckBarcode('1234567890123') then
ShowMessage('Barcode is O.K.')
else
ShowMessage(Ean.LastPaintErrorText);
end;