[PythonCE] Tkinter PhotoImage, no such file or directory

2006-04-28 Thread Patrick Kramer
I have two files which are both in the PyGlucoCE directory off of root. Tkintertest.py BtnGluco.gif Here is my code: import sys sys.path.append('\\Program Files\\Python24\\python24.zip\\lib-tk') sys.path.append('\\PyGlucoCE') from Tkinter import * root = Tk() ImgGlucose = PhotoImage(file =

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

2006-04-28 Thread Luke Dunstan
- Original Message - From: "Patrick Kramer" <[EMAIL PROTECTED]> To: Sent: Friday, April 28, 2006 3:30 PM Subject: [PythonCE] Tkinter PhotoImage, no such file or directory >I have two files which are both in the PyGlucoCE directory off of root. > > Tkintertest.py > BtnGluco.gif > > > >

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

2006-04-28 Thread Michael Foord
Patrick Kramer wrote: > I have two files which are both in the PyGlucoCE directory off of root. > > Tkintertest.py > BtnGluco.gif > > > > Here is my code: > > import sys > > sys.path.append('\\Program Files\\Python24\\python24.zip\\lib-tk') > sys.path.append('\\PyGlucoCE') > This appends the Py

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

2006-04-28 Thread Patrick Kramer
> Patrick Kramer wrote: >> I have two files which are both in the PyGlucoCE directory off of root. >> >> Tkintertest.py >> BtnGluco.gif >> >> >> >> Here is my code: >> >> import sys >> >> sys.path.append('\\Program Files\\Python24\\python24.zip\\lib-tk') >> sys.path.append('\\PyGlucoCE') >> > > T