<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>31 Jul 2016 11:09:00 Z</lastBuildDate><pubDate>27 Jul 2016 05:51:00 Z</pubDate><description>Hi Folks&#13;
Appreciate some help with the following.&#13;
&#13;
using Windev 21 - label printer is Brother QL-720NW&#13;
&#13;
I have app with two printers. A4 and Label whose names are stored in data table.&#13;
When user selects [Print Label] I want to select the label printer, set number of copies and print. Should be straight forward, but unless I actually run IConfigure() that displays on screen for user to click [ok] It prints with wrong parameters.&#13;
&#13;
Below is my code&#13;
&#13;
&#13;
// Step 1 - select printer as label printer&#13;
&#13;
iDestination(iPrinter,"Job lbl-62mm")&#13;
IF iConfigure(dwrcompany.DWRPRNLBL) THEN // the name of the lable printer&#13;
iParameter(iOrientation, iOrientation_Portrait) // make sure set to portrait&#13;
iParameter(iPaperSize,"62mm") // label width set to size of continuous label used&#13;
iParameter(iCopies,gnCopies) // number of copies to print&#13;
&#13;
&#13;
&#13;
Trace("---------------- A , B ----------------")&#13;
Trace("Orientation = " + iParameter(iOrientation))&#13;
Trace("PaperSize = " + iParameter(iPaperSize))&#13;
Trace("NbCopies = " + iParameter(iCopies)) // Trace shows "changed " values&#13;
&#13;
iPreview(ipvZoom100) // Just for testing&#13;
iConfigure(iInfoPrinter(True)) // tried this, but does nothing&#13;
iConfigure() // USER CLICKS OK... DO THIS AND ALL PRINTS PERFECTLY. IF NOT THERE PRINTS WITHOUT CHANGING THE PARAMETERS. SEEMS I NEED TO "SAVE" THE PARAMETERS TO THE PRINTER SOMEHOW.&#13;
&#13;
iInitReportQuery(lbl_stkLabel2,TABLE_StockIssue.COL_Stkid)&#13;
iPrintReport(lbl_stkLabel2,"Test1")&#13;
ELSE&#13;
Info("Error configuring label printer... ")&#13;
END&#13;
&#13;
Any tips appreciated&#13;
Thanks Mark</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer/read.awp</link><title>iConfigure label printer</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer-58908/read.awp</comments><pubDate>31 Jul 2016 11:09:00 Z</pubDate><description>Hi King&#13;
&#13;
Thanks for help. Found the problem was 2 different problems I'll outline below in case it helps someone else&#13;
&#13;
My pr…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer-58908/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer-58908/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer/read.awp">iConfigure label printer</source><title>Re: iConfigure label printer</title></item><item><author>crichton</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer-58907/read.awp</comments><pubDate>31 Jul 2016 10:46:12 Z</pubDate><description>Hi King&#13;
&#13;
Thanks for advice. Tried your idea. Using my variable sets the printer ok. &#13;
&#13;
Finally found the problem which is out…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer-58907/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer-58907/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer/read.awp">iConfigure label printer</source><title>Re: iConfigure label printer</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer-58865/read.awp</comments><pubDate>27 Jul 2016 07:55:00 Z</pubDate><description>Hi&#13;
&#13;
Try to use&#13;
&#13;
iConfigure("Actual print Queue name defined in device and printer")&#13;
&#13;
with quotes as above and it should go…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer-58865/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer-58865/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/58863-iconfigure-label-printer/read.awp">iConfigure label printer</source><title>Re: iConfigure label printer</title></item></channel></rss>
