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 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 os.system() and specify what application to run:
import os
os.system("someapp mydocument.doc")
---
</F>
--
http://mail.python.org/mailman/listinfo/python-list