Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bigssa

    Need Tkinter button

    Probably not, but this took me 2 seconds to implement and it works well.
  2. bigssa

    Need Tkinter button

    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"...
  3. bigssa

    How to change window icon with Tkinter?

    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...
  4. bigssa

    A problem with a thread

    Figured out the problem... it was an idiotic thing done by me. -bigssa
  5. bigssa

    A problem with a thread

    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)...
  6. bigssa

    Recursively deleting in subdirectories with csh

    Thank you very much. That helped greatly.
  7. bigssa

    Recursively deleting in subdirectories with csh

    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
  8. bigssa

    Batch processing -- deleting files with specific extension in all sub

    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

Part and Inventory Search

Back
Top