brotherjustice
Programmer
I need a little bit of help with Entry boxes. I keep getting an error when i try to use the get() command
eg. if i have a entrybox named crapola and I try to run the line "x =copy.deepcopy(crapola.get())"
I get an error like this:
Exception in Tkinter callback
Traceback (most recent call last):
File "C:\PYTHON22\lib\lib-tk\Tkinter.py", line 1316, in __call__
return apply(self.func, args)
File "F:\Python22\displayclicbox.py", line 85, in getboxinfo
x=copy.deepcopy(crapola.get)
AttributeError: 'NoneType' object has no attribute 'get'
I know it thinks that that entry box is a 'NoneType' object. the question is why. It displays on the screen best kind? Help would be appreciated.
eg. if i have a entrybox named crapola and I try to run the line "x =copy.deepcopy(crapola.get())"
I get an error like this:
Exception in Tkinter callback
Traceback (most recent call last):
File "C:\PYTHON22\lib\lib-tk\Tkinter.py", line 1316, in __call__
return apply(self.func, args)
File "F:\Python22\displayclicbox.py", line 85, in getboxinfo
x=copy.deepcopy(crapola.get)
AttributeError: 'NoneType' object has no attribute 'get'
I know it thinks that that entry box is a 'NoneType' object. the question is why. It displays on the screen best kind? Help would be appreciated.