P
pbdev
I am trying to upload 3 fonts to a HP Laserjet 4100 and continue to
have problems. I am using a .bat file to load the fonts. The problem
I believe is that the printer is not reading the ESC character I have
in my pcl files.
I understand that <27> = ESC I was using (Cntl [ |) but that didnt
work. Then I had a pcl file with ESC characters already in it - so I
copied the ESC character and used it in my pcl files. That worked
once and now it wont work again. I have turned the printer off and
unplugged it.
I believe the problem with my file is that the printer is not
recognizing my ESC character. How do you insert an ESC character into
a .pcl file? I am using the following code below.
echo downloading Ar080bpn.sfp Softfont
copy /b font9.pcl lpt1: -- > code *c9D
copy /b Ar080bpn.sfp lpt1:
copy /b perm.pcl lpt1: -- > code *c5F
echo downloading Co060rpn Softfont
copy /b font10.pcl lpt1: -- > code *c10D
copy /b Co060rpn.sfp lpt1:
copy /b perm.pcl lpt1: -- > code *c5F
echo downloading He120bpn.sfp Softfont
copy /b font11.pcl lpt1: -- > code *c11D
copy /b He120bpn.sfp lpt1:
copy /b perm.pcl lpt1: -- > code *c5F
echo All Forms Downloaded
Thanks
have problems. I am using a .bat file to load the fonts. The problem
I believe is that the printer is not reading the ESC character I have
in my pcl files.
I understand that <27> = ESC I was using (Cntl [ |) but that didnt
work. Then I had a pcl file with ESC characters already in it - so I
copied the ESC character and used it in my pcl files. That worked
once and now it wont work again. I have turned the printer off and
unplugged it.
I believe the problem with my file is that the printer is not
recognizing my ESC character. How do you insert an ESC character into
a .pcl file? I am using the following code below.
echo downloading Ar080bpn.sfp Softfont
copy /b font9.pcl lpt1: -- > code *c9D
copy /b Ar080bpn.sfp lpt1:
copy /b perm.pcl lpt1: -- > code *c5F
echo downloading Co060rpn Softfont
copy /b font10.pcl lpt1: -- > code *c10D
copy /b Co060rpn.sfp lpt1:
copy /b perm.pcl lpt1: -- > code *c5F
echo downloading He120bpn.sfp Softfont
copy /b font11.pcl lpt1: -- > code *c11D
copy /b He120bpn.sfp lpt1:
copy /b perm.pcl lpt1: -- > code *c5F
echo All Forms Downloaded
Thanks