Re: [Tutor] Creating arbitrary number of destinations. (GUI program)

2011-12-06 Thread Alan Gauld
On 06/12/11 12:10, Mic wrote: from tkinter import* import tkinter as tk You only need one of these two lines, the second is probably best. import os NUMBEROFCHAIRS=32 class ChooseDestinationWindow(Frame): def __init__(self,master): super(ChooseDestinationWindow,self).__init__(master) self.

Re: [Tutor] Creating arbitrary number of destinations. (GUI program)

2011-12-06 Thread Alan Gauld
On 06/12/11 12:10, Mic wrote: Hi again :) First of all, I thought the topic name was correct. Arbitrary means as many as one would like or a realistic number right? Yes, but its not clear what you mean by it. I have written a program where you can book train tickets. At first , there were onl

[Tutor] Creating arbitrary number of destinations. (GUI program)

2011-12-06 Thread Mic
Hi again :) First of all, I thought the topic name was correct. Arbitrary means as many as one would like or a realistic number right? I am back with one of my TKinter programs and with new questions: I have written a program where you can book train tickets. At first , there were only a fixe