Win32 error code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

We have currently just started to get a problem with our plotters, we are
unable to print to our plotters from any program except Autocad 2006. When
ever we print even from adoebe reader we get an error in the server event log
of :-

"The document ECP189-M-3003-P8 Ventilation Third Floor.pdf owned by
Administrator failed to print. Win32 error code returned by the print
processor: 119 (0x77). "


This also happens from Word, notepad, wordpad etc.

Does anyone have any ideas what the cause of this problem.
 
I have found one relevant position in the DDK sources in enable.c (msplot):

BOOL DrvEnableDriver(
ULONG iEngineVersion,
ULONG cb,
DRVENABLEDATA *pded
)
{
PLOTDBG(DBG_ENABLEDRV, ("DrvEnableDriver: EngineVersion=%08lx,
Request=%08lx",
iEngineVersion,
DDI_DRIVER_VERSION_NT4));

//
// Verify the Engine version is at least what we know we can work with.
// If its older, error out now, as we don't know what may happen.
//

if (iEngineVersion < DDI_DRIVER_VERSION_NT4) {

PLOTRIP(("DrvEnableDriver: EARLIER VERSION:
EngineVersion(%08lx) < Request(%08lx)",
iEngineVersion,
DDI_DRIVER_VERSION_NT4));

SetLastError(ERROR_BAD_DRIVER_LEVEL);
return(FALSE);
}


I think you should delete the drivers for the plotter and reinstall them.

Dieter
 
Back
Top