how to open a file in some application using Tkinter i am using TKINTER to create GUI application i want to know how to open a word document in open office or any other applicatio

2008-01-09 Thread brindly sujith
hi i am using TKINTER to create GUI application i want to know how to open a word document in open office or any other application please send me the tkinter coding for this -- http://mail.python.org/mailman/listinfo/python-list

Re: how to open a file in some application using Tkinter i am using TKINTER to create GUI application i want to know how to open a word document in open office or any other applicatio

2008-01-09 Thread Fredrik Lundh
brindly sujith wrote: i am using TKINTER to create GUI application i want to know how to open a word document in open office or any other application please send me the tkinter coding for this reposting the reply you received when you posted this on another mailing list: --- on

Re: how to open a file in some application using Tkinter i am using TKINTER to create GUI application i want to know how to open a word document in open office or any other applicatio

2008-01-09 Thread Paul Boddie
On 9 Jan, 09:24, Fredrik Lundh [EMAIL PROTECTED] wrote: [Opening files in applications] on windows, you can use the os.startfile function: import os os.startfile(mydocument.doc) (this is the same as double-clicking on a document in the file explorer) on other platforms, use