Help with Tkinter Label Widget

2008-09-03 Thread Kevin McKinley
Below i've put the code for a program that i wrote. I need help on lines 384-403. If you run this program you will notice on the first tab when have it produce an answer the $ is surrounded with {$}. How can i get rid of that? from Tkinter import * class MyApp: def __init__(self,

Memory Leek, critique me. Thanks!!!

2008-08-29 Thread Kevin McKinley
, # Kevin McKinley from Tkinter import * class MyApp: def __tini__(self, parent): self.myParent = parent self.myFunctionContainer = Frame(parent) self.myFunctionContainer.grid(row=0, column=0) self.COG1 = DoubleVar() self.COG2 = DoubleVar

Memory Leek, critique me. Thanks!!!

2008-08-29 Thread Kevin McKinley
cnb, That is on of the things i want to fix with this code. I meant to mention in my original post that i've only been programming with Python for a little over two weeks. The only other experience with programming i've had is with Basic on my TI-83 calculator in high school. This isn't my

Re: Memory Leak

2008-08-27 Thread Kevin McKinley
Kevin McKinley napisaƂ(a): that everytime i click a tab or button the amount of memory the program takes up goes up by 50-200 kb. The program will start off at 4.5mb and by the time i'm done it can get up over 10 or 15 mb. The program will start running

Adding Icons to my Programs

2008-08-26 Thread Kevin McKinley
I've been turn my script into executible programs with Py2exe. Is there a way to change the icon for the main exe file? Thank you, Kevin McKinley -- http://mail.python.org/mailman/listinfo/python-list

Memory Leak?

2008-08-26 Thread Kevin McKinley
So i've complete my first program with a GUI interface. I've noticed that everytime i click a tab or button the amount of memory the program takes up goes up by 50-200 kb. The program will start off at 4.5mb and by the time i'm done it can get up over 10 or 15 mb. The program will start

Hide Console

2008-08-24 Thread Kevin McKinley
or hide this console once i've turned it into a executable windows program? Thanks you Kevin McKinley -- http://mail.python.org/mailman/listinfo/python-list