This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Martin.Unzner
Recipients Martin.Unzner
Date 2011-11-26.08:50:03
SpamBayes Score 2.2867848e-08
Marked as misclassified No
Message-id <1322297405.04.0.473643719264.issue13482@psf.upfronthosting.co.za>
In-reply-to
Content
Hi all,

while executing the following piece of code:

import tkinter
import tkinter.tix

if __name__=='__main__':
    root = tkinter.Tk()
    dirlist = tkinter.tix.DirSelectBox(root)
    dirlist.pack()
    root.mainloop()

the following error occurred:

Traceback (most recent call last):
  File "<...>", line 6, in <module>
    dirlist = tkinter.tix.DirSelectBox(root)
  File "C:\Python32\lib\tkinter\tix.py", line 712, in __init__
    TixWidget.__init__(self, master, 'tixDirSelectBox', ['options'], cnf, kw)
  File "C:\Python32\lib\tkinter\tix.py", line 322, in __init__
    self.tk.call(widgetName, self._w, *extra)
_tkinter.TclError: invalid command name "tixDirSelectBox"

Thanks!

Martin
History
Date User Action Args
2011-11-26 08:50:05Martin.Unznersetrecipients: + Martin.Unzner
2011-11-26 08:50:05Martin.Unznersetmessageid: <1322297405.04.0.473643719264.issue13482@psf.upfronthosting.co.za>
2011-11-26 08:50:04Martin.Unznerlinkissue13482 messages
2011-11-26 08:50:03Martin.Unznercreate