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: *

  • Users: lw22
  • Order by date
  1. lw22

    won't save variable

    this program you are trying to guess the word "hello" by typing letters in the entry fields or clicking the buttons. then the letter goes through a loop to see if its in hello then saves it to result_var. i took alot of the stuff out so you can see the program easier. alright now the problem i...
  2. lw22

    tkinter question again

    i completely understand now. it just took me a little bit. at first i thought when you send argument i thought you meant the line beneath the class. you are a god ericbrunson.
  3. lw22

    tkinter question again

    im sorry i don't understand. i'm trying to figure it out as i go along. im about as much as a beginner as you can get.
  4. lw22

    tkinter question again

    ok well to my understanding this is how you would set up a 300x200 grid using the method above... from Tkinter import * class App: def __init__(self): Tk.__init__( self ) self.geometry('300x200') root = Tk() app = App(root) root.mainloop() that returns this error...
  5. lw22

    tkinter question again

    alright i'm consulting a tkinter forum right now on this but i figured that i would ask here too. i have a basic program that i would like to put into a class so i can use functions inside it. for example this is what i got so far. from Tkinter import * root = Tk() root.geometry('600x200')...
  6. lw22

    Need Tkinter button

    so basically the only way to change the button color is to destroy it and make a new one?
  7. lw22

    Need Tkinter button

    alright well i am not good at writing programs at all. actually im really bad at it but im trying. alright right now im tring to figure out how to change the color of a button when you click on it. for example if i have a button that says "a" and its blue, when you click on it, it will change...

Part and Inventory Search

Back
Top