Re: Help to Auto open generated pdf files
Dom Dom <[email protected]>
| Newsgroups | gmane.comp.python.reportlab.user |
|---|---|
| Message-ID | <[email protected]> |
Hi,
You may also do:
import ctypes
try:
shell32 = ctypes.windll.shell32
shell32.ShellExecuteA(0,"open",doc_name,0,0,5)
except Exception, e:
print Exception, e
Dominique