Skip Menu |

This queue is for tickets about the Win32-Printer CPAN distribution.

Report information
The Basics
Id: 41730
Status: resolved
Priority: 0/
Queue: Win32-Printer

People
Owner: ebinans [...] gmail.com
Requestors: cpan-questions [...] bestpractical.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



CC:
Subject: Fwd: [fsck.com #12979] Win32::Printer - print & as _
Date: Mon, 15 Dec 2008 15:36:14 -0500
To: bug-win32-printer [...] rt.cpan.org
From: cpan-questions [...] bestpractical.com
This is forward of transaction #106279 of a ticket #12979

Message body is not shown because sender requested not to inline it.

CC: <alanhuyle [...] gmail.com>
Subject: Win32::Printer - print & as _
Date: Mon, 15 Dec 2008 11:10:33 -0800
To: <rt-cpan-admin [...] bestpractical.com>
From: "Alan Le" <alan [...] ridgewine.com>
Hi, I am not so sure if this is a bug. However, I am working with ActivePerl for Giftcard Printing. It was working fine with Dyno Label Printer. code as: use Win32::OLE:Const 'Dymo'; $dole = win32::OLE ->new ('Dymo.dymoaddin', 'warn'); $dole = Win32::OLE ->new ("Dymo.dymolabels', 'warn' ); Now I changed to HP LaserJet Printer. code as: use Win32::Printer; I print John & Mike, It shown as John _ Mike, or John&Mike as John_Mike, or & as _ Example: Giftcard Printing as Hello John&Mike, it will print Hello John_Mike, (It was working fine with the Dymo Label Printer) Thank you, Alan Le alanhuyle@hotmail.com

Hi,

 

I am not so sure if this is a bug.

However, I am working with ActivePerl for Giftcard Printing.

 

It was working fine with Dyno Label Printer.

code as:

use Win32::OLE:Const 'Dymo';

 $dole = win32::OLE ->new ('Dymo.dymoaddin', 'warn');

$dole = Win32::OLE ->new ("Dymo.dymolabels', 'warn' );

 

Now I changed to HP LaserJet Printer.

code as:

use Win32::Printer;

 

I print John & Mike, It shown as  John _ Mike, or John&Mike as John_Mike, or & as _

Example:

  Giftcard Printing as

       Hello John&Mike,

 it will print

       Hello John_Mike,

 

(It was working fine with the Dymo Label Printer)

 

Thank you,

 

Alan Le

alanhuyle@hotmail.com

 

 

Win32::Printer is thin wrapper around Win32 GDI where "&" is used to specify shortcut character. To get "&" escape it with another one like "&&";