> --- "Jacob S." <[EMAIL PROTECTED]> wrote:
> > I have a couple of questions.
> > 1) How do I change the title of the window?

My tutors case study shows this, the critical but of code is here:
class GrammarApp(Frame):
  def __init__(self, parent=0):
    Frame.__init__(self,parent)
    self.type = 2    # create variable with default value
    self.master.title('Grammar counter')
    self.buildUI()Note the second last line.HTH,Alan GAuthor of the
Learn to Program web tutorhttp://www.freenetpages.co.uk/hp/alan.gauld

_______________________________________________
Tutor maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/tutor

Reply via email to