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
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
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
"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
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
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
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