Re: PDF Viewer

2005-09-30 Thread David Boddie
John J. Lee wrote: > Alternatively, if you feel rather adventurous, try compiling KPDF on > Windows with the free Qt3 port(s?) or Qt4, if that's arrived yet. I think you might be slightly too optimistic about getting KPDF to run natively on Windows. The project you mention does have a page descri

Re: PDF Viewer

2005-09-30 Thread John J. Lee
Pepe Pena <[EMAIL PROTECTED]> writes: > I am new to programming and need some guidance on the development of > the following application. The proposed application will display > two pdf documents simultaneously to be viewed and simple navigation > will be facilitated (i.e. turning pages). > > Fu

Re: PDF Viewer

2005-09-29 Thread Robert Kern
Terry Reedy wrote: > "Pepe Pena" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Google 'python pdf library' and the third hit is > www.reportlab.org/rl_toolkit.html And is for PDF generation, not PDF viewing. -- Robert Kern [EMAIL PROTECTED] "In the fields of hell where the

Re: PDF Viewer

2005-09-29 Thread Terry Reedy
"Pepe Pena" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Google 'python pdf library' and the third hit is www.reportlab.org/rl_toolkit.html Terry J. Reedy -- http://mail.python.org/mailman/listinfo/python-list

PDF Viewer

2005-09-29 Thread Pepe Pena
I am new to programming and need some guidance on the development of the following application.  The proposed application will display two pdf documents simultaneously to be viewed and simple navigation will be facilitated (i.e. turning pages).    Furthermore, the pdf documents must be linked to

Re: How to launch pdf viewer on Mac?

2005-03-11 Thread has
Paul McNett wrote: > On Windows, os.startfile() does what I want: > > os.startfile("myDocument.pdf") > > But on Mac, what do I do? os.system("open myDocument.pdf") HTH has -- http://mail.python.org/mailman/listinfo/python-list

How to launch pdf viewer on Mac?

2005-03-10 Thread Paul McNett
Hi, On Windows, os.startfile() does what I want: os.startfile("myDocument.pdf") That launches the default PDF viewer on the system in a separate process. Perfect. On Linux, I understand that there really isn't a standard for determining a default application for a given file type