Re: tkFileDialog, askopenfiles in v2.6 question

2008-11-26 Thread MRAB
fransstil wrote: To select a group of files works fine in 2.5 ... from tkFileDialog import askopenfiles fnames = askopenfiles(title = "Select files", initialdir = "C:\\temp", filetypes=[("All", "*.*")]) for i in range(len(fnames)):

tkFileDialog, askopenfiles in v2.6 question

2008-11-26 Thread fransstil
To select a group of files works fine in 2.5 ... from tkFileDialog import askopenfiles fnames = askopenfiles(title = "Select files", initialdir = "C:\\temp", filetypes=[("All", "*.*")]) for i in range(len(fnames)): fnames[i]