[Tutor] Automated function creation / outsourcing code

2009-03-28 Thread Martin Klimach
Hi, I started using python three months ago in order to create scripts for the abaqus fea software. The initial script became bigger and bigger and finding myself spending lots of time just trying to find the right part in the code, I started looking into making my first own module. Since I find i

Re: [Tutor] Left Alignment -- Tkinter

2009-03-28 Thread W W
On Sat, Mar 28, 2009 at 9:47 AM, Wayne Watson wrote: > Hi, that's an interesting way to look at it. Actually, I was about to > probe the color idea myself, but needed to better understand how to achieve > it. Where did grid_columnconfigure(3, weight=1) come from? I don't recall > seeing that with

Re: [Tutor] Left Alignment -- Tkinter

2009-03-28 Thread Wayne Watson
Hi, that's an interesting way to look at it. Actually, I was about to probe the color idea myself, but needed to better understand how to achieve it. Where did grid_columnconfigure(3, weight=1) come from? I don't recall seeing that with Frame. Grid has columnconfigure. I started down that path

Re: [Tutor] Left Alignment -- Tkinter

2009-03-28 Thread W W
On Fri, Mar 27, 2009 at 2:46 PM, Wayne Watson wrote: > It's very difficult to tell. I've tried it. > fLocation=Frame(master) > fLocation.pack(side=LEFT) > I need to size the fLocation frame to make it big. As it is, it must be > giving the smallest possible size. > > I tried this