Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

"No problem is so formidable that you can't walk away from it." -- C. Schulz


devel / comp.lang.xharbour / Re: Is anyone printing QR codes with Fivewin? - ¿Alguien esta imprimiendo codigos QR con Fivewin?

SubjectAuthor
* Is anyone printing QR codes with Fivewin? - ¿Alguienicolas.dps
`- Re: Is anyone printing QR codes with Fivewin? - ¿Alguien esta imprimiendo codigoEduardo Motta

1
Is anyone printing QR codes with Fivewin? - ¿Alguien esta imprimiendo codigos QR con Fivewin?

<2053284b-a97c-41c7-984f-249d9f30b55cn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=16737&group=comp.lang.xharbour#16737

  copy link   Newsgroups: comp.lang.xharbour
X-Received: by 2002:ac8:6b0f:: with SMTP id w15mr14527702qts.366.1627918234780;
Mon, 02 Aug 2021 08:30:34 -0700 (PDT)
X-Received: by 2002:a0c:b44b:: with SMTP id e11mr16919050qvf.38.1627918234378;
Mon, 02 Aug 2021 08:30:34 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.xharbour
Date: Mon, 2 Aug 2021 08:30:34 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=67.218.237.84; posting-account=2WbpRwoAAAD9MXsWdyN6SW5veW_tbO-Y
NNTP-Posting-Host: 67.218.237.84
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <2053284b-a97c-41c7-984f-249d9f30b55cn@googlegroups.com>
Subject: Is_anyone_printing_QR_codes_with_Fivewin?_-_¿Alguie
n_esta_imprimiendo_codigos_QR_con_Fivewin?
From: nicolas.dps@gmail.com (nicolas.dps)
Injection-Date: Mon, 02 Aug 2021 15:30:34 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: nicolas.dps - Mon, 2 Aug 2021 15:30 UTC

Hello
Is anyone printing QR codes with Fivewin?
If so, I would be grateful if you could tell me
1. Libraries to link
2. .CH files to include in the compilation
3. Some PRG example of how the function would be called where you can see what parameters are passed.
----------------
Hola
¿Alguien esta imprimiendo codigos QR con Fivewin?
Si asi fuese agradeceria me indicasen
1. Librerias a linkar
2. ficheros .CH a incluir en la compilacion
3. Algun ejemplo PRG de como se llamaria a la funcion donde se vea que parametros se pasan

Re: Is anyone printing QR codes with Fivewin? - ¿Alguien esta imprimiendo codigos QR con Fivewin?

<bd553680-11be-46e3-8669-26740578585dn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=16742&group=comp.lang.xharbour#16742

  copy link   Newsgroups: comp.lang.xharbour
X-Received: by 2002:a05:6214:21ee:: with SMTP id p14mr22073605qvj.8.1628007774530; Tue, 03 Aug 2021 09:22:54 -0700 (PDT)
X-Received: by 2002:a37:b6c5:: with SMTP id g188mr20118347qkf.92.1628007774224; Tue, 03 Aug 2021 09:22:54 -0700 (PDT)
Path: i2pn2.org!i2pn.org!aioe.org!feeder5.feed.usenet.farm!feeder1.feed.usenet.farm!feed.usenet.farm!tr1.eu1.usenetexpress.com!feeder.usenetexpress.com!tr1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.xharbour
Date: Tue, 3 Aug 2021 09:22:54 -0700 (PDT)
In-Reply-To: <2053284b-a97c-41c7-984f-249d9f30b55cn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=179.93.80.107; posting-account=ciYPUgkAAACP7h-GihPdeC47vCOdy23j
NNTP-Posting-Host: 179.93.80.107
References: <2053284b-a97c-41c7-984f-249d9f30b55cn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <bd553680-11be-46e3-8669-26740578585dn@googlegroups.com>
Subject: Re:_Is_anyone_printing_QR_codes_with_Fivewin?_-_¿Alguien_esta_imprimiendo_codigos_QR_con_Fivewin?
From: eduardo@emotta.com.br (Eduardo Motta)
Injection-Date: Tue, 03 Aug 2021 16:22:54 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 22
 by: Eduardo Motta - Tue, 3 Aug 2021 16:22 UTC

#include "fivewin.ch"

Function u_Teste()
Local cStr := "QRCODE text"
Local cFile := "arq.bmp"
Local oDlg
Local oBmp1

QRCode(cStr,cFile) // aqui vc chama a funcao passando como parametro o conteudo do QRCODE e o arquivo BMP que será gerado

DEFINE DIALOG oDlg FROM 0,0 TO 300,300 TITLE "Exibir QRCODE" PIXEL

@ 10,10 BITMAP oBmp1 FILE cFile OF oDlg Size 200,200 Pixel NOBORDER

ACTIVATE DIALOG oDlg CENTERED

Return

// link download qrcodelib.dll => http://www.emotta.com.br/qrcode/qrcode.rar
DLL32 STATIC FUNCTION QRCode(cStr As STRING, cFile As STRING) AS LONG PASCAL FROM "FastQRCode" LIB "QRCodelib.Dll"

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor