Re: outlook bar like widget

2007-02-22 Thread Jaime Casanova
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

Re: outlook bar like widget

2007-02-22 Thread Mohammad Tayseer
This is a module that does what you want using Tkinter from Tkinter import * class OutlookBar(Frame): def __init__(self, *args, **options): Frame.__init__(self, *args, **options) self.panes = {} def add_pane(self, name, pane): self.panes[n

Re: outlook bar like widget

2007-02-22 Thread Mohammad Tayseer
I implemented this module using Tkinter --- from Tkinter import * class OutlookBar(Frame): def __init__(self, *args, **options): Frame.__init__(self, *args, **options) self.panes = {} def add_pane(self, name, pane): self.panes[name]

Re: outlook bar

2007-02-07 Thread Diez B. Roggisch
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 that ? I've not done such a thing,