... oPrn:Lines( { { 11, 2 }, { 11, 10.5 }, { 11.4, 10.5 } }, oPen, "CM" )
@ 11.5, 2 PRINT TO oPrn TEXT cItem2 AS BARCODE TYPE "CODE128" SIZE 8.5,1 CM
ENDPAGE
ENDPRINT
RELEASE FONT oFont
return nil
Now the barcodes fit within 4.0 cm and 8.5 cm. I checked by printing on paper and measuring it.
Search found 79 matches: barcodes
Searched query: barcodes
- Wed May 15, 2024 12:57 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: CODIGO DE BARRAS. ERROR CON FILLRECT()
- Replies: 31
- Views: 7689
- Tue May 14, 2024 7:05 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: CODIGO DE BARRAS. ERROR CON FILLRECT()
- Replies: 31
- Views: 7689
Re: CODIGO DE BARRAS. ERROR CON FILLRECT()
But most importantly, we DO NOT NEED any 3rd party library for generating, display and printing any barcodes or QRCodes.
FWH is natively capable of generating and printing not only CODE128 barcodes but many other types of barcodes and qr-codes, with or without HaruPDF.
Please try this small example ...
FWH is natively capable of generating and printing not only CODE128 barcodes but many other types of barcodes and qr-codes, with or without HaruPDF.
Please try this small example ...
- Sat Mar 02, 2024 9:28 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Does anyone have an Envelope Printing module ?
- Replies: 10
- Views: 2834
Re: Does anyone have an Envelope Printing module ?
... The only complication is finding the right way to print the address barcode. I researched it a few years back but didn't bother to implement it. That would make sending the envelopes faster. Otherwise the PO has to feed them through a machine that prints the barcodes IF it can read the address.
Tim
Tim
- Tue Jan 16, 2024 8:34 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: problem with Barcode (zebra) no Html no web . resolved
- Replies: 2
- Views: 835
Re: problem with Barcode (sebra) no Html no web
... corret.
Please post some to see.
EAN 13
12 characters + Check Digit (1 digit)
you're Right
I decided to change barlib for the new fwbarcode barcodes because in barlib we don't have the new qr type codes
to do a demo I think I need to set TExt for each type of barcode in order to be able to ...
Please post some to see.
EAN 13
12 characters + Check Digit (1 digit)
you're Right
I decided to change barlib for the new fwbarcode barcodes because in barlib we don't have the new qr type codes
to do a demo I think I need to set TExt for each type of barcode in order to be able to ...
- Sun Apr 16, 2023 2:54 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Barcode FwZebra
- Replies: 0
- Views: 453
Barcode FwZebra
https://i.postimg.cc/vmWqgVdP/K.png
I made this page with this code
#include "fivewin.ch"
REQUEST FWZEBRA
//test zebra
function PrintBarCodes()
local oPrn, oFont
local nRow:= 0
local nCol:= 1
local aBarCode:= {"EAN13","EAN8","UPCA","UPCE",;
"ITF","MSI","CODABAR","11","39","93",;
"128 ...
I made this page with this code
#include "fivewin.ch"
REQUEST FWZEBRA
//test zebra
function PrintBarCodes()
local oPrn, oFont
local nRow:= 0
local nCol:= 1
local aBarCode:= {"EAN13","EAN8","UPCA","UPCE",;
"ITF","MSI","CODABAR","11","39","93",;
"128 ...
- Fri Apr 14, 2023 10:24 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: PRINT TO oPrn....AS BARCODE TYPE
- Replies: 7
- Views: 1076
Re: PRINT TO oPrn....AS BARCODE TYPE
local aBarCode:= { "EAN13","EAN8","UPCA","UPCE",;
"ITF","MSI","CODABAR","11","39","93",;
"128","PDF417","DATAMATRIX","QR"}
I would like to know about these types of barcodes need characters or numbers or both
thanks
"ITF","MSI","CODABAR","11","39","93",;
"128","PDF417","DATAMATRIX","QR"}
I would like to know about these types of barcodes need characters or numbers or both
thanks
- Thu Apr 06, 2023 11:32 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: PRINT TO oPrn....AS BARCODE TYPE
- Replies: 7
- Views: 1076
PRINT TO oPrn....AS BARCODE TYPE
the barcode print command what types of barcodes does it support ? ie can i have a list because i have to be a combobox with the selection
I don't understand if I have to use fwzebra or not
I don't understand if I have to use fwzebra or not
- Mon Jan 02, 2023 5:33 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Postal bar code
- Replies: 1
- Views: 1930
Re: Postal bar code
Tim,
Check out the "USPS Barcode FAQ & Tutorial" here:
barcodefaq.com/usps-postal/
I have never used postal barcodes, so I can't offer any help with this.
I hope you have already solved your problem.
Check out the "USPS Barcode FAQ & Tutorial" here:
barcodefaq.com/usps-postal/
I have never used postal barcodes, so I can't offer any help with this.
I hope you have already solved your problem.
- Wed Oct 19, 2022 6:38 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Postal bar code
- Replies: 1
- Views: 1930
Re: Postal bar code
Thanks for responding, but the output is not correct.
U.S. mail barcodes are very specific. They use a special font, and are much thinnner than the output we are achieving with the FW barcode functions/methods.
My label printer software automatically adds them. Microsoft Word also adds them in their ...
U.S. mail barcodes are very specific. They use a special font, and are much thinnner than the output we are achieving with the FW barcode functions/methods.
My label printer software automatically adds them. Microsoft Word also adds them in their ...
- Thu Jan 20, 2022 7:53 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: how to scan a barcode presents in a jpeg file
- Replies: 11
- Views: 1187
Re: how to scan a barcode presents in a jpeg file
Working with a right barcode, and it detects multiple barcodes
two lines of code do the magic:
frame = cv2.imread( 'marco.jpg' )
barcodes = pyzbar.decode( frame )
it properly detects the right one:
1
1234567890128
EAN13
https://github.com/FiveTechSoft/screenshots/blob/master/opencv ...
two lines of code do the magic:
frame = cv2.imread( 'marco.jpg' )
barcodes = pyzbar.decode( frame )
it properly detects the right one:
1
1234567890128
EAN13
https://github.com/FiveTechSoft/screenshots/blob/master/opencv ...
- Thu Jul 15, 2021 11:40 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ApplyParams Tdatabase
- Replies: 8
- Views: 2226
Re: ApplyParams Tdatabase
... nbsp; RETURN Sel
the invoice and numpre fields must remain so in modification, I thought of it in this way also to create labels with barcodes and qr code.
I don't use any IDs
the reserva file is indexed on ROOMS_ID + DToS (CHECK_IN)
>If you re-read the paragraph you are referring to ...
the invoice and numpre fields must remain so in modification, I thought of it in this way also to create labels with barcodes and qr code.
I don't use any IDs
the reserva file is indexed on ROOMS_ID + DToS (CHECK_IN)
>If you re-read the paragraph you are referring to ...
- Wed Dec 23, 2020 5:15 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: QR-Code on invoices
- Replies: 2
- Views: 458
QR-Code on invoices
... invoices with QR-code, that I can scan with my mobile bank-app.
Since I also create incoive programs, it would be nice to add them on the invoices.
I know how to print barcodes or QR-codes, but does anyone know the info that should be on it, to enable paying the invoice with a mobile app?
Thanks
Since I also create incoive programs, it would be nice to add them on the invoices.
I know how to print barcodes or QR-codes, but does anyone know the info that should be on it, to enable paying the invoice with a mobile app?
Thanks
- Wed Sep 30, 2020 8:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Offtopic : advice in buying a pos-ticket printer
- Replies: 5
- Views: 962
Offtopic : advice in buying a pos-ticket printer
Hello,
I'm going to print ean-13 barcodes with FWH and going to buy a ticket printer (like the ones of zebra)
Things I hear is that thermal printer are not good because the ink is just ok for 6 months ?
Then they advice the cartridge printers ?
Need to say that I need to use cardstickets like you ...
I'm going to print ean-13 barcodes with FWH and going to buy a ticket printer (like the ones of zebra)
Things I hear is that thermal printer are not good because the ink is just ok for 6 months ?
Then they advice the cartridge printers ?
Need to say that I need to use cardstickets like you ...
- Wed May 20, 2020 2:09 am
- Forum: Utilities / Utilidades
- Topic: FiveWin applications gallery
- Replies: 52
- Views: 64217
Re: FiveWin applications gallery
... included comunication
fron PHP on server ERP app, and Verifone_VX520 pos system.
( COM port, emulate USB )
Also include support for all type of BarCodes, in
POS or Matrics printer, ( ESC* - Grafic bmp slices )
WebScket run pseudo Sincronusly, my chemystry.
Home page: http://clientprint. ...
fron PHP on server ERP app, and Verifone_VX520 pos system.
( COM port, emulate USB )
Also include support for all type of BarCodes, in
POS or Matrics printer, ( ESC* - Grafic bmp slices )
WebScket run pseudo Sincronusly, my chemystry.
Home page: http://clientprint. ...
- Tue Dec 03, 2019 11:10 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Help with PDF in FWH-19.09 please. - SOLVED
- Replies: 3
- Views: 1229
Re: Help with PDF in FWH-19.09 please.
... with (1) fwh internal (2) MSWord (3) HaruPDF and also (4) Image2PDF.
Study and compare the outputs.
Study the recommended way to print images and barcodes. (important for you)
Still, if you are not fully clear, please share one sample print program with us on our personal email and we will help you ...
Study and compare the outputs.
Study the recommended way to print images and barcodes. (important for you)
Still, if you are not fully clear, please share one sample print program with us on our personal email and we will help you ...