Re: Tkinter spacing

2016-01-26 Thread Christian Gollwitzer
Am 26.01.16 um 23:48 schrieb high5stor...@gmail.com: On Monday, January 25, 2016 at 7:41:57 PM UTC-8, KP wrote: > [fullquote snipped] Ah - that clears it up. Thanks for your help! It is totally unclear what you reply to. PLease cite what you refer to, and shorten your citation for clarity.

Re: Tkinter spacing

2016-01-26 Thread Christian Gollwitzer
Am 26.01.16 um 04:41 schrieb KP: If I want to have some space between, say, btn_last & btn_new, will I have to use a dummy label in between these two or is there a better way? If you just want to put space there, you can use the pad options of grid, just like you do for lbl_Recs.

Re: Tkinter spacing

2016-01-26 Thread Peter Otten
KP wrote: > If I want to have some space between, say, btn_last & btn_new, will I have > to use a dummy label in between these two or is there a better way? > > Thanks for any help, as always! You could use nested frames with nonzero padding, e. g: nav_bar = ttk.Frame(root, borderwidth=2,

Re: Tkinter spacing

2016-01-26 Thread high5storage
On Monday, January 25, 2016 at 7:41:57 PM UTC-8, KP wrote: > If I want to have some space between, say, btn_last & btn_new, will I have to > use a dummy label in between these two or is there a better way? > > Thanks for any help, as always! > > > > > from tkinter import * > from tkinter

Re: Tkinter spacing

2016-01-26 Thread Peter Otten
high5stor...@gmail.com wrote: >> from tkinter import * >> from tkinter import ttk >> >> root = Tk() >> root.geometry("822x600+100+100") >> nav_bar = ttk.Frame(root, borderwidth=2, relief='ridge', padding=(10, 3, >> 10, 3)) >> >> btn_first = ttk.Button(nav_bar, text='|<', width=4) # for

Re: Tkinter spacing

2016-01-26 Thread high5storage
On Monday, January 25, 2016 at 7:41:57 PM UTC-8, KP wrote: > If I want to have some space between, say, btn_last & btn_new, will I have to > use a dummy label in between these two or is there a better way? > > Thanks for any help, as always! > > > > > from tkinter import * > from tkinter

Tkinter spacing

2016-01-25 Thread KP
If I want to have some space between, say, btn_last & btn_new, will I have to use a dummy label in between these two or is there a better way? Thanks for any help, as always! from tkinter import * from tkinter import ttk root = Tk() root.geometry("822x600+100+100") nav_bar = ttk.Frame(root,