help for a barcode font
gorvega79
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
0
Answers
-
pdf 412 What's That? Google doesn't even bring up any info.0
-
Don't you mean PDF 417, the 2D barcode font?0
-
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.
thanks0 -
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 you0 -
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/qrcodeCA Sandeep Singla
http://ssdynamics.co.in0 -
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
http://webpages.charter.net/jtlien/pdf.html
http://sourceforge.net/projects/pdf417encode/Robert de Bath
TVision Technology Ltd0 -
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 christmas0 -
hi gorvega79.
Did you manage to finish the barcode subject? I need to make a report with qrcode. Do you have any tips?0 -
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.
0 -
Hi gorvega79,
did you ever manage to implement pdf417 in the classic client?0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions