brindly sujith wrote:
> while executing this program
>
> initially a window will openafter that the buttons 'select'
> and 'exit' is not working...
It works for me as written on Mac OSX with Python 2.5.1. What platform
are you running on? How are you running the program? If you are running
from Tkinter import *
import tkMessageBox
import tkFileDialog,os
def quit():
if tkMessageBox.askokcancel("Quit","DO u really want to quit"):
root.destroy()
def fiopen():
file1 = tkFileDialog.askopenfile(parent=root,mode='rb',title='Choose a
file')
os.system