Re: [Tkinter-discuss] Problems to show menubar

2007-11-26 Thread mkieverpy
Hi Mathias, you need to attach your menubar to a Toplevel window. A simple Frame cannot have a menubar. It works, if you change your code like this: from Tkinter import * class DistManager(Frame): ... def createMenuBar(self): menub

[Tkinter-discuss] Problems to show menubar

2007-11-26 Thread Mathias Uebelacker
Hello, i just starts with Tkinter and started with a small GUI where i want to show a menubar. but it does not work. Here is the code: --- from Tkinter import * class DistManager(Frame): def __ini