Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Haze

Hey just wondering if you can do something like that with variables for example [CODE] class test(object): a = 55 def dispmenu(self): print self.a instance = test() [/CODE] How would i be able to call "instance.dispmenu()" without having to type that. Some things i have tried [CODE] action1 = instance.dispmenu() …

Member Avatar for jrcagle
0
128
Member Avatar for Haze

Im pondering creating a large database of items each with 10 or so variable values attached for a database with some advanced searching features. All of this item information is allready available on the internet but this would require me manually entering a LOT of information. How hard a task …

Member Avatar for pritaeas
0
78
Member Avatar for Haze

im trying to use the .get() method to get all the text from a tkinter text widget. the code im using is [ICODE]text = root.textwidget.get(1,end)[/ICODE] i get the error "name error: global name 'end' is not defined" is there a word specficly for the end of the text or am …

Member Avatar for ZZucker
0
124
Member Avatar for Haze

when i change the state of a entry widget to disabled it greys out automaticly and this doesn't happen with text widgets. I was wondering if there is a specific value i can change for text widgets to make it work the same way as a entry widget. this is …

Member Avatar for jrcagle
0
83
Member Avatar for Haze

Ok so I'm trying to use menu bars to grey out different widgets in my gui il show you all the lines that i think are important and the error messages for each command i have tried. [CODE]root = Tk() input_text = Text(root, height = 10, width = 25).grid(row = …

Member Avatar for jrcagle
0
2K
Member Avatar for Haze

when i say basic i mean basic it doesnt store the encrypted string in a file or anything it just prints out what it would be and all i intend it to do is swap a for b, b for c and so on then turn the string round backwards …

Member Avatar for jrcagle
0
2K