Re: adding a new line of text in Tk

2006-03-27 Thread Fredrik Lundh
Ben Cartwright wrote: > > w =Label(root, text="Congratulations you have made it this far,just a few > > more > > questions then i will be asking you some") > > > > The problem i have is where i have started to write some > > text"Congratulations > > you have made it this far,just a few more ques

Re: adding a new line of text in Tk

2006-03-26 Thread Ben Cartwright
nigel wrote: > w =Label(root, text="Congratulations you have made it this far,just a few more > questions then i will be asking you some") > > The problem i have is where i have started to write some text"Congratulations > you have made it this far,just a few more questions then i will be asking yo

adding a new line of text in Tk

2006-03-25 Thread nigel
Hello i have been working on an interactive programme,i wish to use a small amount of Tk.Which i have taken from a tutorial. from Tkinter import * root = Tk() w =Label(root, text="Congratulations you have made it this far,just a few more questions then i will be asking you some") w.pack() root.ma