Re: [Tkinter-discuss] Need help with a text + scrollbar widget and expansion

2006-03-21 Thread Mannequin*
Michael Lange wrote: > On Mon, 20 Mar 2006 12:10:41 -0600 Mannequin* > <[EMAIL PROTECTED]> wrote: > >> Now, if you run this, you'll notice that when you expand the window >> horizontally ( <---> ) that the text + scrollbar widget doesn't >> expand with the window. >> >> self.bible_scroll.pack (si

Re: [Tkinter-discuss] Tkinter-discuss Digest, Vol 25, Issue 7

2006-03-21 Thread Harlin Seritt
Hi Mr. M.-   Change this line: self.bible_scroll.pack (side = RIGHT, fill = Y, expand = "yes", anchor = W) to this: self.bible_scroll.pack (side = RIGHT, fill = Y, anchor = W)   Remember that not everything needs to expand! Good luck with your project!   If you get a chance, I'd like to kn

Re: [Tkinter-discuss] Need help with a text + scrollbar widget and expansion

2006-03-21 Thread Michael Lange
On Mon, 20 Mar 2006 12:10:41 -0600 Mannequin* <[EMAIL PROTECTED]> wrote: > Now, if you run this, you'll notice that when you expand the window > horizontally ( <---> ) that the text + scrollbar widget doesn't expand > with the window. > > self.bible_scroll.pack (side = RIGHT, fill = Y, expand