Re: File copying from a menu

2008-08-26 Thread Fredrik Lundh
Brandon wrote: I'm attempting to have a file copied from a menu selection. The menu already exists, but it won't even create the menu item. If anyone has any ideas, please let me know. try cutting down your code to a minimal example that illustrates the problem, and post that code

Re: File copying from a menu

2008-08-26 Thread Brandon
Ok, below is a portion of the code that first (near as I can tell because I had nothign to do with desgining the program) sets up the menu (setupMenuBar) and then adds the commands to be used with the items: def setupMenuBar(self): menubar = self.menuBar() file_ =

Re: File copying from a menu

2008-08-26 Thread Brandon
Turns out I was missing a few lines of code here-and-there, but now it's visible and working. Thanks to anyone who was looking into this for me. Fredrik Lundh [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Brandon wrote: I'm attempting to have a file copied from a menu

File copying from a menu

2008-08-25 Thread Brandon
I'm attempting to have a file copied from a menu selection. The menu already exists, but it won't even create the menu item. If anyone has any ideas, please let me know. -- http://mail.python.org/mailman/listinfo/python-list