A computer components & hardware forum. HardwareBanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » HardwareBanter forum » General Hardware & Peripherals » General
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Need Help - Strange Print Output HP 950 AIO



 
 
Thread Tools Display Modes
  #1  
Old July 31st 07, 09:51 PM posted to alt.comp.hardware
Jethro
external usenet poster
 
Posts: 357
Default Need Help - Strange Print Output HP 950 AIO

My HP 950CSE (All-In-One) is suddenly printing two extra pages along
with normal printout(s), no matter the number of pages being printed.
The pages contain what looks to me like some sort of (?printing?)
script.

For example - page one starts out
errordict begin /handleerror {error begin newerror { /newerror false
....etc..........
page two starts out
xmin ymax 1.5 inch sub lineto
closepath
....etc..........
Helvetica findfont .2 inch scalefont setfont
....etc.....

I have no idea why this started. Can anyone advise how to get rid of
it?

Thanks

Jethro
  #2  
Old August 1st 07, 01:14 AM posted to alt.comp.hardware
Paul
external usenet poster
 
Posts: 13,364
Default Need Help - Strange Print Output HP 950 AIO

Jethro wrote:
My HP 950CSE (All-In-One) is suddenly printing two extra pages along
with normal printout(s), no matter the number of pages being printed.
The pages contain what looks to me like some sort of (?printing?)
script.

For example - page one starts out
errordict begin /handleerror {error begin newerror { /newerror false
...etc..........
page two starts out
xmin ymax 1.5 inch sub lineto
closepath
...etc..........
Helvetica findfont .2 inch scalefont setfont
...etc.....

I have no idea why this started. Can anyone advise how to get rid of
it?

Thanks

Jethro


The code above, is "Postscript". It is a graphics language.
The language can be parsed and displayed by Ghostscript, but only
if the code is complete.

Postscript Language Reference Manual
http://www.adobe.com/products/postscript/pdfs/PLRM.pdf

The code you've shown above, looks like there could well be an error
message contained in it, in plain English. The "setfont" command has
chosen the easy-to-read Helvetica font for rendering, so the actual
message itself should be around there as well.

"Handleerror" can be part of a Postscript print job. If the file
sent to the printer, develops an error while the print is happening,
the print job itself can emit a piece of paper with a message on it.
An example would be, if the Postscript interpreter inside the printer,
ran out of RAM while rendering one of the pages. That might be
enough to cause an error page to come out.

If your printer is not an actual Postscript printer, then, well,
you'd need to figure out why the printing subsystem is sending
Postscript, to a non-Postscript printer :-)

Paul
  #3  
Old August 1st 07, 02:29 AM posted to alt.comp.hardware
Jethro
external usenet poster
 
Posts: 357
Default Need Help - Strange Print Output HP 950 AIO

On Tue, 31 Jul 2007 20:14:19 -0400, Paul wrote:

Jethro wrote:
My HP 950CSE (All-In-One) is suddenly printing two extra pages along
with normal printout(s), no matter the number of pages being printed.
The pages contain what looks to me like some sort of (?printing?)
script.

For example - page one starts out
errordict begin /handleerror {error begin newerror { /newerror false
...etc..........
page two starts out
xmin ymax 1.5 inch sub lineto
closepath
...etc..........
Helvetica findfont .2 inch scalefont setfont
...etc.....

I have no idea why this started. Can anyone advise how to get rid of
it?

Thanks

Jethro


The code above, is "Postscript". It is a graphics language.
The language can be parsed and displayed by Ghostscript, but only
if the code is complete.

Postscript Language Reference Manual
http://www.adobe.com/products/postscript/pdfs/PLRM.pdf

The code you've shown above, looks like there could well be an error
message contained in it, in plain English. The "setfont" command has
chosen the easy-to-read Helvetica font for rendering, so the actual
message itself should be around there as well.

"Handleerror" can be part of a Postscript print job. If the file
sent to the printer, develops an error while the print is happening,
the print job itself can emit a piece of paper with a message on it.
An example would be, if the Postscript interpreter inside the printer,
ran out of RAM while rendering one of the pages. That might be
enough to cause an error page to come out.

If your printer is not an actual Postscript printer, then, well,
you'd need to figure out why the printing subsystem is sending
Postscript, to a non-Postscript printer :-)

Paul


Thanks Paul

I'll look at the postscript possibility tomorrow morning. I don't
think the HP950CSE AIO is a postscript printer. But I'll try to
determine that one way or another.

Jethro
  #4  
Old August 1st 07, 10:23 AM posted to alt.comp.hardware
Jethro
external usenet poster
 
Posts: 357
Default Need Help - Strange Print Output HP 950 AIO

ning PaulOn Wed, 01 Aug 2007 01:29:58 GMT, Jethro
wrote:

On Tue, 31 Jul 2007 20:14:19 -0400, Paul wrote:

Jethro wrote:
My HP 950CSE (All-In-One) is suddenly printing two extra pages along
with normal printout(s), no matter the number of pages being printed.
The pages contain what looks to me like some sort of (?printing?)
script.

For example - page one starts out
errordict begin /handleerror {error begin newerror { /newerror false
...etc..........
page two starts out
xmin ymax 1.5 inch sub lineto
closepath
...etc..........
Helvetica findfont .2 inch scalefont setfont
...etc.....

I have no idea why this started. Can anyone advise how to get rid of
it?

Thanks

Jethro


The code above, is "Postscript". It is a graphics language.
The language can be parsed and displayed by Ghostscript, but only
if the code is complete.

Postscript Language Reference Manual
http://www.adobe.com/products/postscript/pdfs/PLRM.pdf

The code you've shown above, looks like there could well be an error
message contained in it, in plain English. The "setfont" command has
chosen the easy-to-read Helvetica font for rendering, so the actual
message itself should be around there as well.

"Handleerror" can be part of a Postscript print job. If the file
sent to the printer, develops an error while the print is happening,
the print job itself can emit a piece of paper with a message on it.
An example would be, if the Postscript interpreter inside the printer,
ran out of RAM while rendering one of the pages. That might be
enough to cause an error page to come out.

If your printer is not an actual Postscript printer, then, well,
you'd need to figure out why the printing subsystem is sending
Postscript, to a non-Postscript printer :-)

Paul


Thanks Paul

I'll look at the postscript possibility tomorrow morning. I don't
think the HP950CSE AIO is a postscript printer. But I'll try to
determine that one way or another.

Jethro



Good morning Paul.

I think you hit it on the head. I checked all the options/preferences
in the printer properties, and found that 'separator page' was checked
and showed a .exe file under windows\system32 to use for that. I
never set that, and how it became set I have no idea. But I cleared
the filename box, and so far the two garbage pages have not
re-appeared when I print.

Thanks again.

Jethro
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Help - Strange Print Output HP 950 AIO Jethro Printers 2 August 1st 07 10:28 AM
EpsonStylus 760 Strange Print Problem - Help ! Phil Hampson Printers 2 February 9th 05 02:23 PM
epson c82 strange print problem Capri Printers 1 December 7th 04 02:58 PM
Epson 3000 Black no print head output at all Glenn Barry Printers 1 April 14th 04 04:42 PM
BJC4300 square print output Paul & Sharon Printers 3 December 8th 03 04:16 PM


All times are GMT +1. The time now is 01:05 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 HardwareBanter.
The comments are property of their posters.