Code Comments
Programming Forum and web based access to our favorite programming groups.<<< Printing stop and resume when I go out from app. Clipper 5.2 and WIN XP pro and Epson LX300 >>> Do you have CPU time slice release stuff in your app?
Post Follow-up to this message> Do you have CPU time slice release stuff in your app? > No and I dont know what is it does.
Post Follow-up to this messagecall this function after your printjob: FUNCTION PRCOMMIT() local cPrinter := set( _SET_PRINTFILE, "LPT3" ) set( _SET_PRINTFILE, "LPT2" ) set( _SET_PRINTFILE, "LPT1" ) set( _SET_PRINTFILE, "" ) // restores the original printer-port! set(_SET_PRINTFILE, cPrinter, .t.) return nil Am Fri, 13 May 2005 08:12:25 +0200 hat gv <goran@goran.htnet.hr> geschrieben: > > > > No and I dont know what is it does. > > -- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
Post Follow-up to this messageAm Fri, 13 May 2005 11:30:24 +0200 hat Markus Wiederstein <markus.wiederstein@web.de> geschrieben: ... and don't forget to #include "set.ch" ;-) > > call this function after your printjob: > > FUNCTION PRCOMMIT() > > local cPrinter := set( _SET_PRINTFILE, "LPT3" ) > set( _SET_PRINTFILE, "LPT2" ) > set( _SET_PRINTFILE, "LPT1" ) > set( _SET_PRINTFILE, "" ) > > // restores the original printer-port! > set(_SET_PRINTFILE, cPrinter, .t.) > > return nil > > > > > > > > Am Fri, 13 May 2005 08:12:25 +0200 hat gv <goran@goran.htnet.hr> > geschrieben: > > > > -- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
Post Follow-up to this message"Markus Wiederstein" <markus.wiederstein@web.de> wrote in message news:op.sqpj49gsolrrg1@news.t-online.de... > Am Fri, 13 May 2005 11:30:24 +0200 hat Markus Wiederstein > <markus.wiederstein@web.de> geschrieben: > > ... and don't forget to #include "set.ch" ;-) > > > > > > -- > Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/ Thx G
Post Follow-up to this messageDid this work for you ? greetings from germany Markus Am Fri, 13 May 2005 13:43:30 +0200 hat gv <goran@goran.htnet.hr> geschrieben: > > "Markus Wiederstein" <markus.wiederstein@web.de> wrote in message > news:op.sqpj49gsolrrg1@news.t-online.de... > > Thx > G > > -- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
Post Follow-up to this messageOn Fri, 13 May 2005 14:24:05 +0200, "Markus Wiederstein" <markus.wiederstein@web.de> wrote: >Did this work for you ? > >greetings from germany >Markus > Unlikely, as the OP is using S87. Another poster hit the nail on the head by suggesting CPU time release as the problem. www.tamedos.com is one solution. > >Am Fri, 13 May 2005 13:43:30 +0200 hat gv <goran@goran.htnet.hr> >geschrieben: >
Post Follow-up to this messageHi Nick, > > Unlikely, as the OP is using S87. ok, so he should simply use a s87 compatible code like // cOriginal is the actual lpt port f.e. "LPT1" procedure prcommit(cOriginal) set printer to lpt3 set printer to lpt2 set printer to lpt1 set printer to set printer to cOriginal return cheers, Markus
Post Follow-up to this messageAm Fri, 13 May 2005 18:37:59 +0200 hat Markus Wiederstein <markus.wiederstein@web.de> geschrieben: well, i forgot *g* procedure prcommit() parameters cOriginal set printer to lpt3 set printer to lpt2 set printer to lpt1 set printer to if pcount() = 1 set printer to cOriginal endif return > Hi Nick, > > > ok, so he should simply use a s87 compatible code like > > // cOriginal is the actual lpt port f.e. "LPT1" > procedure prcommit(cOriginal) > set printer to lpt3 > set printer to lpt2 > set printer to lpt1 > set printer to > set printer to cOriginal > return > > > cheers, Markus -- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
Post Follow-up to this messageOn 13 May 2005 10:42:24 -0700, "E. Fridman" <pm771.am@gmail.com> wrote: >Nick, > >While OP indeed specified S'87, the "gv" person mentioned Clipper 5.2 >as his/her tool. Indeed. Gah, damn convoluted threads!
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.