Re: [Tkinter-discuss] how to open a file using os.system in TKINTER

2008-01-10 Thread Ron Provost
askopenfilename(). You can then use file() or open() to actually open the file. - Original Message - From: "Fredrik Lundh" <[EMAIL PROTECTED]> To: Sent: Wednesday, January 09, 2008 5:34 AM Subject: Re: [Tkinter-discuss] how to open a file using os.system in TKINTER > brindly s

Re: [Tkinter-discuss] how to open a file using os.system in TKINTER

2008-01-09 Thread Fredrik Lundh
brindly sujith wrote: > i am developing a GUI application using TKINTER > > i want to open a file from the askopenfile(which is a tkFileDialog) > using OS.SYSTEM. > > i have already created the file open dilog using > tkFileDialog.askopenfile(parent=root,mode='rb',title='choose a file') > Now i