On 2/21/07, Mohammad Tayseer <[EMAIL PROTECTED]> wrote:
> I implemented this module using Tkinter
>
wow! i will try this, thanks
--
regards,
Jaime Casanova
"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to
f toggle_collapse(self):
if self.collapsed:
self.child_frame.pack(side=TOP) # show
else:
self.child_frame.pack_forget()
self.collapsed = not self.collapsed
def add_widget(self, widget):
widget.pack(side=TOP)
if __name__ == '__ma
#x27;__main__':
#import bwidget as bw
root = Tk()
root.title('Outlook Bar Demo')
bar = OutlookBar(root)
bar.pack(expand=1, fill=BOTH)
bar.add_pane('pane1', OutlookPane(bar, text='Hello'))
pane1 = bar.get_frame('pane1')
pane1.add_widg
Hi,
i'm trying to make an outlook bar like widget basically buttons that
when pressed extends to lists...
any idea where to start?
--
regards,
Jaime Casanova
"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and th
yvesd wrote:
> Hello,
> I'm trying to make an outlook bar like in python but i'm not at all
> familiar with ms-outlook and i'm
> a bit too weak and in early stage of python learning.
> Has somebody already made or seen the code IN TKINTER(/)PMW for a bar
> like t
Hello,
I'm trying to make an outlook bar like in python but i'm not at all
familiar with ms-outlook and i'm
a bit too weak and in early stage of python learning.
Has somebody already made or seen the code IN TKINTER(/)PMW for a bar
like that ?
Thanks very much for all help.