Re: [R] tcltk scrollbar

2007-10-08 Thread Peter Dalgaard
kapo coulibaly wrote: > This is approximately what I get: > -- --- > ! !!S! ! !S! > ! !!C! ! !C! > ! !

[R] tcltk scrollbar

2007-10-08 Thread kapo coulibaly
For example, try to pack this label as follows: tkgrid(lbl.MainT,columnspan=2,sticky="nw") This worked once I changed columnspan=5, can you explain why. It seems i need to do the same for all widgets located above the ListBoxes. Thanks [[alternative HTML version deleted]] _

Re: [R] tcltk scrollbar

2007-10-08 Thread kapo coulibaly
This is approximately what I get: -- --- ! !!S! ! !S! ! !!C! ! !C! ! !!R! !

Re: [R] tcltk scrollbar

2007-10-08 Thread Peter Dalgaard
Jonne Zutt wrote: > Maybe I do... > I think the OP means the first scrollbar isn't tight to the first > listbox. This is due to the length of the "Basic Manipulation" label. > > For example, try to pack this label as follows: > tkgrid(lbl.MainT,columnspan=2,sticky="nw") > > Aha. Now I see it t

Re: [R] tcltk scrollbar

2007-10-08 Thread Jonne Zutt
Maybe I do... I think the OP means the first scrollbar isn't tight to the first listbox. This is due to the length of the "Basic Manipulation" label. For example, try to pack this label as follows: tkgrid(lbl.MainT,columnspan=2,sticky="nw") That helps? Jonne. On Mon, 2007-10-08 at 08:37 +0200

Re: [R] tcltk scrollbar

2007-10-07 Thread Peter Dalgaard
kapo coulibaly wrote: > The following code should give me (at least that's what I think) two list > boxes with their individual scrollbars. But instead both scrollbars stick to > the same listbox even though they work as they should (scroll individual > listboxes). When I remove all the widgets on

[R] tcltk scrollbar

2007-10-07 Thread kapo coulibaly
The following code should give me (at least that's what I think) two list boxes with their individual scrollbars. But instead both scrollbars stick to the same listbox even though they work as they should (scroll individual listboxes). When I remove all the widgets on top everything works perfectly