Re: how to print pdf with python on a inkjet printer.

2006-11-19 Thread km
i dont see os.startfile in python2.5 installation on my system :-( KM On 11/19/06, Thomas Heller <[EMAIL PROTECTED]> wrote: Gabriel Genellina schrieb: > At Friday 17/11/2006 17:40, Tim Roberts wrote: > >> > double wow! as it is my customer wants me to print to the default >> > printer. >> > ca

Re: how to print pdf with python on a inkjet printer.

2006-11-19 Thread Thomas Heller
Gabriel Genellina schrieb: > At Friday 17/11/2006 17:40, Tim Roberts wrote: > >> > double wow! as it is my customer wants me to print to the default >> > printer. >> > can you please help me with the command for rendering the pdf to the >> > printer with acrobat using python? >> >>You'll have to

Re: how to print pdf with python on a inkjet printer.

2006-11-17 Thread Gabriel Genellina
At Friday 17/11/2006 17:40, Tim Roberts wrote: > double wow! as it is my customer wants me to print to the default > printer. > can you please help me with the command for rendering the pdf to the > printer with acrobat using python? You'll have to use the registry to find "acrord32", but once

Re: how to print pdf with python on a inkjet printer.

2006-11-17 Thread Tim Roberts
krishnakant Mane wrote: >> > double wow! as it is my customer wants me to print to the default > printer. > can you please help me with the command for rendering the pdf to the > printer with acrobat using python? You'll have to use the registry to find "acrord32", but once you find it, you jus

Re: how to print pdf with python on a inkjet printer.

2006-11-17 Thread Fredrik Lundh
krishnakant Mane wrote: > I can't figure out where is the win32api module in my system. > I think I need to download it. > I tried to search but did not find it. googling for "python win32api" gives you: http://sourceforge.net/project/showfiles.php?group_id=78018 among the first few hits.

Re: how to print pdf with python on a inkjet printer.

2006-11-17 Thread krishnakant Mane
On 17/11/06, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > http://tgolden.sc.sabren.com/python/win32_how_do_i/print.html > > or possibly: > > http://www.planetpdf.com/forumarchive/49365.asp I can't figure out where is the win32api module in my system. I think I need to download it. I tried

Re: how to print pdf with python on a inkjet printer.

2006-11-17 Thread Fredrik Lundh
krishnakant Mane wrote: > double wow! as it is my customer wants me to print to the default printer. > can you please help me with the command for rendering the pdf to the > printer with acrobat using python? see: http://tgolden.sc.sabren.com/python/win32_how_do_i/print.html or possibly:

Re: how to print pdf with python on a inkjet printer.

2006-11-17 Thread krishnakant Mane
On 17/11/06, Tim Roberts <[EMAIL PROTECTED]> wrote: > Making the PDF is easy. Go get ReportLab from www.reportlab.org. I > consider it the best Python PDF solution. wow! you solved my major problem before I even asked it. seams that python programmers also have dynamic mind reading capability *s

Re: how to print pdf with python on a inkjet printer.

2006-11-17 Thread Leo Kislov
Leo Kislov wrote: > CUPS only have command line interface: > My mistake: CUPS actually has official C API and unofficial python bindings . -- http://m

Re: how to print pdf with python on a inkjet printer.

2006-11-17 Thread Leo Kislov
krishnakant Mane wrote: > hello all. > I am developing an ncurses based python application that will require > to create pdf reports for printing. > I am not using py--qt or wx python. > it is a consol based ui application and I need to make a pdf report > and also send it to a lazer or ink jet pr

Re: how to print pdf with python on a inkjet printer.

2006-11-16 Thread Tim Roberts
"krishnakant Mane" <[EMAIL PROTECTED]> wrote: > >hello all. >I am developing an ncurses based python application that will require >to create pdf reports for printing. >I am not using py--qt or wx python. >it is a consol based ui application and I need to make a pdf report >and also send it to a la

how to print pdf with python on a inkjet printer.

2006-11-16 Thread krishnakant Mane
hello all. I am developing an ncurses based python application that will require to create pdf reports for printing. I am not using py--qt or wx python. it is a consol based ui application and I need to make a pdf report and also send it to a lazer or ink jet printer. is it possible to do so with p