Pedro wrote:
and I just can see a grey window with a "close" button... However,
when I try the same code with the root I can see both images... Can
anyone give me a tip?
this was cross-posted to the tkinter mailing list; in case someone
stumbles upon this via a search engine, here's a link th
On Aug 22, 9:17 am, Pedro <[EMAIL PROTECTED]> wrote:
> Hi
>
> I'm trying to build a small application that can display some images
> in a toplevel window. I have this code:
>
> def Results(master):
> from Tkinter import Toplevel, Button, Label
> from PIL import ImageTk
>
> figures = ['f
Hi
I'm trying to build a small application that can display some images
in a toplevel window. I have this code:
def Results(master):
from Tkinter import Toplevel, Button, Label
from PIL import ImageTk
figures = ['first.png', 'second.png']
ResultsWindow = Toplevel(master)
Res