> My first try fiddling around with GUIs ended disappointing, 
> instead of showing the window title as expected 'Demofenster' 
> ist still shows 'tk' instead. 
>
> What did I do wrong?
>
>
> #!/usr/bin/env python
>
> from Tkinter import *
> fenster = Tk()
> fenster.title = 'Demofenster'
> fenster.mainloop()

Steffen .... 

  To set the Tk window title
  try ....

      fenster.title( 'Demofenster' )
  

-- 
Stanley C. Kitching
Human Being
Phoenix, Arizona


----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet 
News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ 
Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to