This is not the greatest programming, but its a solution to your problem:
from Tkinter import *
c1 = "blue"
class App:
def __init__(self, master, c1):
self.frame = Frame(master)
self.frame.pack()
self.button = Button(self.frame, text="QUIT", fg="red"...
Hey,
I am trying to change the default Tk icon that Tkinter uses in both windows and unix. I found this link for windows, but its no help for unix: http://groups-beta.google.com/group/comp.lang.python/msg/af323deab469c8da
Is there some easy function that will do this and I just do not know...
Hey, I have a file that sets up several UI elements created with Tkinter (see below). When I create a progress bar (createProgressBar), which runs as a seperate thread, before creating any other element then everything is fine and runs as it should. If I create any element (i.e infoDialog)...
Hey,
I need to delete all *.pyc files in a folder and its subdirectories in a csh script. I am currently trying to do it with a foreach loop:
foreach f ( 'find ../cadcore "*.pyc"' )
rm -f $f
end
Any ideas would be appriciated
Thanks
-bigssa
Hey,
I am trying to get a batch script that will delete all *.pyc files in a directory and all of its subdirectories. Does anyone know of an easy way of doing this with a batch script?
Any help is greatly appriciated.
-bigssa
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.