FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour XBrowse - QRCodes - Unicode languages
Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
XBrowse - QRCodes - Unicode languages
Posted: Wed Apr 03, 2019 03:26 PM
Next version of FWH:
Code (fw): Select all Collapse
#include "fivewin.ch"

REQUEST FWZEBRA

function Main()

   FW_SetUnicode( .t. )

   XBROWSER "CUSTOMER.DBF" ;
      COLUMNS ;
      "TRIM( FIRST - CRLF() - LAST )", ;
      "TRIM( STREET - CRLF() - CITY - CRLF() - STATE - '-' - ZIP )", ;
      "TRIM( FIRST - CRLF() - LAST - CRLF() - STREET - CRLF() - CITY - CRLF() - STATE - '-' - ZIP )" ;
      SETUP ( ;
      oBrw:nRowHeight := 150, ;
      oBrw:cHeaders  := { "NAME", "ADDRESS", "CODE" }, ;
      oBrw:nWidths   := { 200, 300, 150 }, ;
      oBrw:aCols[ 3 ]:BarCodeType := "QR" )

return nil

function crlf(); return CRLF


Regards



G. N. Rao.

Hyderabad, India
Posts: 7318
Joined: Thu Oct 18, 2012 07:17 PM
Re: XBrowse - QRCodes - Unicode languages
Posted: Wed Apr 03, 2019 04:03 PM

Nice...
but only Qr ?

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: XBrowse - QRCodes - Unicode languages
Posted: Wed Apr 03, 2019 04:09 PM
Silvio.Falconi wrote:Nice...
but only Qr ?


Code (fw): Select all Collapse
oBrw:aCols[ 3 ]:BarCodeType := "QR"

Here the programmer can specify what barcode he wants.
The programmer is also expected to know what is the valid data for what barcodes and specify the data and barcode type accordingly.
Regards



G. N. Rao.

Hyderabad, India
Posts: 375
Joined: Tue Feb 10, 2015 09:48 AM
Re: XBrowse - QRCodes - Unicode languages
Posted: Thu Apr 04, 2019 03:58 PM

Pretty cool, but does it export in Excel? How? create an image in clipboard and paste?

Posts: 7318
Joined: Thu Oct 18, 2012 07:17 PM
Re: XBrowse - QRCodes - Unicode languages
Posted: Tue Apr 09, 2019 03:03 PM
Nages a question...
I wanted ask ...
the code can be different from record to another ?
sample :
oBrw:aCols[ 3 ]:BarCodeType:= articles->typebar_code or each column as I can see here : ( from a school application)



often an article ( product ) has two or three different bar codes
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com

Continue the discussion