Re: [PythonCE] PythonCE IDE and Form Designer in Development

2006-04-30 Thread Tod Haren
Very cool. I vote yes. ___ PythonCE mailing list PythonCE@python.org http://mail.python.org/mailman/listinfo/pythonce

Re: [PythonCE] Tkinter PhotoImage, no such file or directory

2006-04-30 Thread Luke Dunstan
- Original Message - From: "Michael Foord" <[EMAIL PROTECTED]> To: "Patrick Kramer" <[EMAIL PROTECTED]> Cc: Sent: Sunday, April 30, 2006 5:57 PM Subject: Re: [PythonCE] Tkinter PhotoImage, no such file or directory > Patrick Kramer wrote: >> >> >>> You can tell Python using os.chdir()

Re: [PythonCE] Tkinter PhotoImage, no such file or directory

2006-04-30 Thread Gonzalo Monzón
Patrick Kramer escribió: > > > >>You can tell Python using os.chdir(), but that will not necessarily have any >>effect on Tkinter because the operating system has no concept of a "current >>directory", so it depends on whether the image file is opened in the Python >>code or the C code. >> >>Luk

Re: [PythonCE] Tkinter PhotoImage, no such file or directory

2006-04-30 Thread Michael Foord
Patrick Kramer wrote: > > >> You can tell Python using os.chdir(), but that will not necessarily have any >> effect on Tkinter because the operating system has no concept of a "current >> directory", so it depends on whether the image file is opened in the Python >> code or the C code. >> >> Lu

Re: [PythonCE] Tkinter PhotoImage, no such file or directory

2006-04-30 Thread Patrick Kramer
> > You can tell Python using os.chdir(), but that will not necessarily have any > effect on Tkinter because the operating system has no concept of a "current > directory", so it depends on whether the image file is opened in the Python > code or the C code. > > Luke > So there is no way for pyt