Message148384
| 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:05 | Martin.Unzner | set | recipients:
+ Martin.Unzner |
| 2011年11月26日 08:50:05 | Martin.Unzner | set | messageid: <1322297405.04.0.473643719264.issue13482@psf.upfronthosting.co.za> |
| 2011年11月26日 08:50:04 | Martin.Unzner | link | issue13482 messages |
| 2011年11月26日 08:50:03 | Martin.Unzner | create |
|