September 11, 2007
Print Logger Update 1.2
Chris @ 2:12 pmI rolled out a new release of the free PaperCut Print Logger utility today – version 1.2. The release includes support for a number of new printer models as well as improved page/plot size detection on some HPGL based plotters. I’ve also updated the URLs to point to the www.papercut.com domain.



January 9th, 2008 at 10:44 am
Hi.
Next update
You added option for generated internet web report.
IE:
In the PaperCut Print Logger Configuration File add URL POST Data.
URL_POST = http://www.blabla.com
and in the software add.
[CODE]
function URL_POST(URL. String)
var
idHttp: TIdHTTP;
datosPost: TIdMultiPartFormDataStream;
begin
datosPost := TIdMultiPartFormDataStream.Create;
try
datosPost.AddFormField(‘Time’, PRINT.Time);
datosPost.AddFormField(‘User’, PRINT.User);
datosPost.AddFormField(‘Pages’, PRINT.Pages);
datosPost.AddFormField(‘Copies’, PRINT.Copies);
datosPost.AddFormField(‘Printer’, PRINT.Printer);
bla bla bla
idHttp := TIdHTTP.Create(nil);
try
RespuestaPost := idHttp.Post(‘http://www.bla bla.com/receptor.php’, datosPost);
…
bla bla
end;
thxx