<HTML><HEAD></HEAD>
<BODY dir=ltr>
<DIV dir=ltr>
<DIV style="FONT-FAMILY: 'Calibri'; COLOR: #000000; FONT-SIZE: 12pt">
<DIV>Hi all,</DIV>
<DIV>I’m new on the list. Now moving from GTK to Tkinter.</DIV>
<DIV>I have question about packing in frame.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Example:</DIV>
<DIV>&nbsp;</DIV>
<DIV>frame2 = Frame(self)</DIV>
<DIV>hScrollbar = ttk.Scrollbar(frame2, orient=HORIZONTAL)</DIV>
<DIV>self.text = Text(frame2,</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
font='Courier 9',</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
undo=True,</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
background='white',</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
wrap=NONE)</DIV>
<DIV>self.text.pack(fill=BOTH, expand=1)</DIV>
<DIV>hScrollbar.pack(side=BOTTOM, fill=X)</DIV>
<DIV>frame2.pack(side=LEFT, fill=BOTH, expand=1)</DIV>
<DIV>&nbsp;</DIV>
<DIV>in this little example i have defined hScrollbar.</DIV>
<DIV>all working fine until i resize main window when frame2 is.</DIV>
<DIV>if i resize window under 24lines in Text is visible scrollbar 
dissapear.</DIV>
<DIV>&nbsp;</DIV>
<DIV>is this wrong packing ? thanks.</DIV>
<DIV>&nbsp;</DIV></DIV></DIV></BODY></HTML>