<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.fr.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>16 Jan 2020 15:48:14 Z</lastBuildDate><pubDate>14 Jan 2020 21:24:40 Z</pubDate><description>Bonjour&#13;
&#13;
Je viens ici pour demander de l'aide à de nobles collègues, ci-dessous j'ai un code en C # qui vous permet d'obtenir un fichier de type prn qui est décrit à la fin du post et ce code envoie à l'imprimante Zebra. Je me demande si quelqu'un ici dans le forum pourrait m'aider à convertir le code en C # en windev? J'ai l'imprimante ici pour tester, j'apprécie le support, si nous pouvons convertir j'irai au support en avant à l'équipe de développement créer une fonction avec ce code intégré.&#13;
&#13;
Hi,&#13;
&#13;
I come here to ask the noble colleagues for help, below I have a code in C # that allows you to get a file of type prn that is described at the end of the post and this code sends to the printer Zebra. I wonder if anyone here in the forum could help me convert the code in C # to windev? I have the printer here to test, I appreciate the support, if we can convert I will go to support forward to the development team create a function with this code embedded.&#13;
&#13;
Olá&#13;
&#13;
Venho aqui pedir ajuda aos nobres colegas, abaixo tenho um coódigo em c# que permite pegar um arquivo do tipo prn que esta descrito no final do post e esse codigo manda para a impressora Zebra. Gostaria de saber se alguem aqui no forum poderia me ajudar a converter o codigo em c# para windev? Tenho a impressora aqui para testar, agradeço o apoio, se conseguirmos converter vou passar para o suporte encaminhar para o time de desenvolvimento criar uma função com esse codigo embarcado.&#13;
&#13;
&#13;
CODE C# - Read File PRN Zebra and Print (Imprimir arquivo .PRN para etiquetar com Windev na impressora Zebra)&#13;
[code:wl]&#13;
		&#13;
        RawPrinterHelper.SendStringToPrinter(pd.PrinterSettings.PrinterName, sb.ToString());&#13;
		&#13;
        // Etiquetas&#13;
        public class RawPrinterHelper&#13;
        {&#13;
            // Structure and API declarions:&#13;
            [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]&#13;
            public class DOCINFOA&#13;
            {&#13;
                [MarshalAs(UnmanagedType.LPStr)]&#13;
                public string pDocName;&#13;
                [MarshalAs(UnmanagedType.LPStr)]&#13;
                public string pOutputFile;&#13;
                [MarshalAs(UnmanagedType.LPStr)]&#13;
                public string pDataType;&#13;
            }&#13;
            [DllImport("winspool.Drv", EntryPoint = "OpenPrinterA", SetLastError = true, CharSet = CharSet.Ansi, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]&#13;
            public static extern bool OpenPrinter([MarshalAs(UnmanagedType.LPStr)] string szPrinter, out IntPtr hPrinter, IntPtr pd);&#13;
&#13;
            [DllImport("winspool.Drv", EntryPoint = "ClosePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]&#13;
            public static extern bool ClosePrinter(IntPtr hPrinter);&#13;
&#13;
            [DllImport("winspool.Drv", EntryPoint = "StartDocPrinterA", SetLastError = true, CharSet = CharSet.Ansi, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]&#13;
            public static extern bool StartDocPrinter(IntPtr hPrinter, Int32 level, [In, MarshalAs(UnmanagedType.LPStruct)] DOCINFOA di);&#13;
&#13;
            [DllImport("winspool.Drv", EntryPoint = "EndDocPrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]&#13;
            public static extern bool EndDocPrinter(IntPtr hPrinter);&#13;
&#13;
            [DllImport("winspool.Drv", EntryPoint = "StartPagePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]&#13;
            public static extern bool StartPagePrinter(IntPtr hPrinter);&#13;
&#13;
            [DllImport("winspool.Drv", EntryPoint = "EndPagePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]&#13;
            public static extern bool EndPagePrinter(IntPtr hPrinter);&#13;
&#13;
            [DllImport("winspool.Drv", EntryPoint = "WritePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]&#13;
            public static extern bool WritePrinter(IntPtr hPrinter, IntPtr pBytes, Int32 dwCount, out Int32 dwWritten);&#13;
&#13;
            // SendBytesToPrinter()&#13;
            // When the function is given a printer name and an unmanaged array&#13;
            // of bytes, the function sends those bytes to the print queue.&#13;
            // Returns true on success, false on failure.&#13;
            public static bool SendBytesToPrinter(string szPrinterName, IntPtr pBytes, Int32 dwCount)&#13;
            {&#13;
                Int32 dwError = 0, dwWritten = 0;&#13;
                IntPtr hPrinter = new IntPtr(0);&#13;
                DOCINFOA di = new DOCINFOA();&#13;
                bool bSuccess = false; // Assume failure unless you specifically succeed.&#13;
&#13;
                di.pDocName = "My C#.NET RAW Document";&#13;
                di.pDataType = "RAW";&#13;
&#13;
                // Open the printer.&#13;
                if (OpenPrinter(szPrinterName.Normalize(), out hPrinter, IntPtr.Zero))&#13;
                {&#13;
                    // Start a document.&#13;
                    if (StartDocPrinter(hPrinter, 1, di))&#13;
                    {&#13;
                        // Start a page.&#13;
                        if (StartPagePrinter(hPrinter))&#13;
                        {&#13;
                            // Write your bytes.&#13;
                            bSuccess = WritePrinter(hPrinter, pBytes, dwCount, out dwWritten);&#13;
                            EndPagePrinter(hPrinter);&#13;
                        }&#13;
                        EndDocPrinter(hPrinter);&#13;
                    }&#13;
                    ClosePrinter(hPrinter);&#13;
                }&#13;
                // If you did not succeed, GetLastError may give more information&#13;
                // about why not.&#13;
                if (bSuccess == false)&#13;
                {&#13;
                    dwError = Marshal.GetLastWin32Error();&#13;
                }&#13;
                return bSuccess;&#13;
            }&#13;
&#13;
            public static bool SendFileToPrinter(string szPrinterName, string szFileName)&#13;
            {&#13;
                // Open the file.&#13;
                FileStream fs = new FileStream(szFileName, FileMode.Open);&#13;
                // Create a BinaryReader on the file.&#13;
                BinaryReader br = new BinaryReader(fs);&#13;
                // Dim an array of bytes big enough to hold the file's contents.&#13;
                Byte[] bytes = new Byte[fs.Length];&#13;
                bool bSuccess = false;&#13;
                // Your unmanaged pointer.&#13;
                IntPtr pUnmanagedBytes = new IntPtr(0);&#13;
                int nLength;&#13;
&#13;
                nLength = Convert.ToInt32(fs.Length);&#13;
                // Read the contents of the file into the array.&#13;
                bytes = br.ReadBytes(nLength);&#13;
                // Allocate some unmanaged memory for those bytes.&#13;
                pUnmanagedBytes = Marshal.AllocCoTaskMem(nLength);&#13;
                // Copy the managed byte array into the unmanaged array.&#13;
                Marshal.Copy(bytes, 0, pUnmanagedBytes, nLength);&#13;
                // Send the unmanaged bytes to the printer.&#13;
                bSuccess = SendBytesToPrinter(szPrinterName, pUnmanagedBytes, nLength);&#13;
                // Free the unmanaged memory that you allocated earlier.&#13;
                Marshal.FreeCoTaskMem(pUnmanagedBytes);&#13;
                return bSuccess;&#13;
            }&#13;
            public static bool SendStringToPrinter(string szPrinterName, string szString)&#13;
            {&#13;
                IntPtr pBytes;&#13;
                Int32 dwCount;&#13;
                // How many characters are in the string?&#13;
                dwCount = szString.Length;&#13;
                // Assume that the printer is expecting ANSI text, and then convert&#13;
                // the string to ANSI text.&#13;
                pBytes = Marshal.StringToCoTaskMemAnsi(szString);&#13;
                // Send the converted ANSI string to the printer.&#13;
                SendBytesToPrinter(szPrinterName, pBytes, dwCount);&#13;
                Marshal.FreeCoTaskMem(pBytes);&#13;
                return true;&#13;
            }&#13;
        }&#13;
[/code]&#13;
&#13;
&#13;
Example file PRN Zebra 3 label&#13;
 &#13;
[code:wl]&#13;
I8,A,001&#13;
&#13;
&#13;
Q152,024&#13;
q863&#13;
rN&#13;
S5&#13;
D10&#13;
ZT&#13;
JF&#13;
O&#13;
R6,0&#13;
f100&#13;
N&#13;
A19,8,0,1,1,2,N,"NOVALGINA 300MG/ML"&#13;
A19,32,0,1,1,2,N,"Lab: BAYER"&#13;
A19,56,0,1,1,2,N,"L:10000 - V:15/01/2020"&#13;
B18,90,0,1,2,6,40,N,"DXQZWVFJ"&#13;
A299,8,0,1,1,2,N,"NOVALGINA 300MG/ML"&#13;
A299,32,0,1,1,2,N,"Lab: BAYER"&#13;
A299,56,0,1,1,2,N,"L:10000 - V:15/01/2020"&#13;
B298,90,0,1,2,6,40,N,"DXQZWVFJ"&#13;
A578,8,0,1,1,2,N,"NOVALGINA 300MG/ML"&#13;
A578,32,0,1,1,2,N,"Lab: BAYER"&#13;
A578,56,0,1,1,2,N,"L:10000 - V:15/01/2020"&#13;
B577,90,0,1,2,6,40,N,"DXQZWVFJ"&#13;
P3&#13;
[/code]&#13;
&#13;
--&#13;
Adriano José Boller&#13;
______________________________________________&#13;
Consultor e Representante Oficial da&#13;
PcSoft no Brasil&#13;
+55 (41) 99949 1800&#13;
adrianoboller@gmail.com&#13;
skype: adrianoboller&#13;
http://wxinformatica.com.br/</description><ttl>30</ttl><generator>WEBDEV</generator><language>fr_FR</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp</link><title>Print file .PRN to Label with Windev in Printer Zebra</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236283/read.awp</comments><pubDate>16 Jan 2020 15:48:14 Z</pubDate><description>Versão final esta no repositório&#13;
&#13;
https://repository.windev.com/resource.awp?file_id=281474976710879;zebra-util&#13;
&#13;
[code:wl]&#13;
…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236283/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236283/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236244/read.awp</comments><pubDate>15 Jan 2020 21:37:39 Z</pubDate><description>Imprimindo diversas etiquetas&#13;
&#13;
[code:wl]&#13;
// Summary: &lt;specify the procedure action&gt;&#13;
// Syntax:&#13;
//Imprimir_Etiqueta_Zebra_To…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236244/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236244/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236243/read.awp</comments><pubDate>15 Jan 2020 19:37:00 Z</pubDate><description>[code:wl]&#13;
// Summary: &lt;specify the procedure action&gt;&#13;
// Syntax:&#13;
//Imprimir_Etiqueta_Zebra (&lt;LINHA_01&gt;, &lt;LINHA_02&gt;, &lt;LINHA_03&gt;…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236243/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236243/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236239/read.awp</comments><pubDate>15 Jan 2020 16:03:23 Z</pubDate><description>Patrice and Christophe!!!&#13;
&#13;
:merci:&#13;
&#13;
Thank you so much for helping me ok&#13;
&#13;
--&#13;
Adriano José Boller&#13;
________________________…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236239/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236239/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236238/read.awp</comments><pubDate>15 Jan 2020 15:57:50 Z</pubDate><description>[code:wl]&#13;
PROCEDURE WD_Gera_Etiqueta_Zebra(LINHA_01,LINHA_02,LINHA_03,CODBAR,QtdeEtiquetas)&#13;
&#13;
sEtiqueta_Zebra is string = [&#13;
I…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236238/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236238/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236236/read.awp</comments><pubDate>15 Jan 2020 15:32:19 Z</pubDate><description>FONTE DOWNLOAD&#13;
&#13;
https://repository.windev.com/publish.awp?file_id=281474976710878;label-printing-via-prn-file-zebra-printer-wi…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236236/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236236/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236235/read.awp</comments><pubDate>15 Jan 2020 15:30:21 Z</pubDate><description>https://hostimage.windev.io/images/zb_aa9a28197a3a6fcee51487cc1e325409.png&#13;
&#13;
--&#13;
Adriano José Boller&#13;
_________________________…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236235/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236235/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236234/read.awp</comments><pubDate>15 Jan 2020 15:26:30 Z</pubDate><description>Solução final&#13;
&#13;
Sobrecarga de método, passando ou nao o nome da impressora ou lendo de um arquivo ini.&#13;
&#13;
[code:wl]&#13;
PROCEDURE …</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236234/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236234/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236231/read.awp</comments><pubDate>15 Jan 2020 15:15:52 Z</pubDate><description>[code:wl]&#13;
I8,A,001&#13;
&#13;
&#13;
Q152,024&#13;
q863&#13;
rN&#13;
S5&#13;
D10&#13;
ZT&#13;
JF&#13;
O&#13;
R6,0&#13;
f100&#13;
N&#13;
A19,8,0,1,1,2,N,"NOVALGINA 500MG/ML"&#13;
A19,32,0,1…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236231/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236231/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236230/read.awp</comments><pubDate>15 Jan 2020 15:15:03 Z</pubDate><description>:merci:&#13;
&#13;
[code:wl]&#13;
PROCEDURE WD_SendFileToPrinter(filename_to_print, verbose_mode is boolean=True) : boolean&#13;
&#13;
PRIVATE&#13;
_res…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236230/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236230/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>pterrier</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236229/read.awp</comments><pubDate>15 Jan 2020 15:10:43 Z</pubDate><description>No need to use DotNET to deal with the core win32 API, see the MSDN documentation there:&#13;
https://docs.microsoft.com/en-us/windo…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236229/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236229/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>DELFI INFO-Chris</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236218/read.awp</comments><pubDate>15 Jan 2020 12:48:16 Z</pubDate><description>Hi Adriano,&#13;
&#13;
you could try this code, it replace your  C# function 'SendFileToPrinter(string szPrinterName, string szFileName)…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236218/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236218/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item><item><author>Boller</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236214/read.awp</comments><pubDate>15 Jan 2020 12:09:43 Z</pubDate><description>https://hostimage.windev.io/images/z1_595de0ee418dc77180f64e2be90a3f70.jpg&#13;
&#13;
--&#13;
Adriano José Boller&#13;
_________________________…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236214/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra-236214/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/236189-print-file-prn-label-with-windev-printer-zebra/read.awp">Print file .PRN to Label with Windev in Printer Zebra</source><title>Re: Print file .PRN to Label with Windev in Printer Zebra</title></item></channel></rss>
