help for a barcode font

gorvega79gorvega79 Member Posts: 73
i have to do a report with a barcode in format pdf 412, where i can find this font free?? thank you

Answers

  • SavatageSavatage Member Posts: 7,142
    pdf 412 What's That? Google doesn't even bring up any info.
  • robinho81robinho81 Member Posts: 48
    Don't you mean PDF 417, the 2D barcode font?
  • gorvega79gorvega79 Member Posts: 73
    yes sorry i want to say pdf 417 and i want to download free this font but i can´t find nothing in the net.

    thanks
  • gorvega79gorvega79 Member Posts: 73
    i still haven´t find anything about barcode format pdf417 in the net, do you know any aplication to generate the barcode or i have to use one special font in the source expresion from a text box.

    thank you
  • ssinglassingla Member Posts: 2,973
    I can find these links but havent tried downloading. You can check yourself:

    http://3d2f.com/programs/26-552-pdf417- ... load.shtml
    http://www.fileguru.com/downloads/qrcode
    CA Sandeep Singla
    http://ssdynamics.co.in
  • rdebathrdebath Member Posts: 383
    Here's a linklist for all sorts of barcodes.
    http://www.adams1.com/stack.html

    This is free C source for a pdf417 encoder, as it can create pbm files it should be easy to convert to bmp.
    Converting it to C/Side could be more of a challenge :D

    http://webpages.charter.net/jtlien/pdf.html
    http://sourceforge.net/projects/pdf417encode/
  • gorvega79gorvega79 Member Posts: 73
    thank you so much, i will try to do something with this information. if i get something, i tell you how i get it hohoho

    merry christmas :D
  • juliocaetanojuliocaetano Member Posts: 3
    hi gorvega79.
    Did you manage to finish the barcode subject? I need to make a report with qrcode. Do you have any tips?
  • gorvega79gorvega79 Member Posts: 73
    edited 2021-08-12
    Hello Julio.

    IN the navision sp1 mexico location instalataion CD there is a component that you have to install "MXElectronicInvoice.msi".

    after install the component you have to create a funciton to generate the QR;
    imageGetQRCode(QRCodeInput : Text[1024]) QRCodeFileName : Text[1024]) this function will generate an image with the QR, then you can use it as a blob field of the table to show the image in a report or where you need.


    Parameters
    Var Name DataType Subtype Length
    No QRCodeInput Text 1024

    Variables:
    Name DataType Subtype Length
    IBarCodeProvider Automation 'Microsoft Dynamics Nav MX Services'.IBarCodeProvider
    QRCodeProvider Automation 'Microsoft Dynamics Nav MX Services'.QRCodeProvider
    FileSystemObject Automation 'Windows Script Host Object Model'.FileSystemObject
    ThreeTierMgt Codeunit Setup Checklist Wizard
    TempFile File
    DestinationFileName Text 1024


    //Generate Qr Image
    QRCodeInput is the text you want transfor to Qr.

    IF ISCLEAR(QRCodeProvider) THEN
    CREATE(QRCodeProvider,TRUE,TRUE);
    IBarCodeProvider := QRCodeProvider;
    QRCodeFileName := IBarCodeProvider.GetBarCode(QRCodeInput);

    //Move to temp File
    TempFile.CREATETEMPFILE;
    DestinationFileName := TempFile.NAME + '.tmp';
    TempFile.CLOSE;

    IF ISCLEAR(FileSystemObject) THEN
    CREATE(FileSystemObject,TRUE,TRUE);
    FileSystemObject.MoveFile(QRCodeFileName,DestinationFileName);
    QRCodeFileName:=DestinationFileName;


    i hope this will help you. regards.
  • tv19tv19 Member Posts: 1
    Hi gorvega79,
    did you ever manage to implement pdf417 in the classic client?
Sign In or Register to comment.