Re: Tkinter Bitmap Newbie question

2005-03-15 Thread klappnase
Neil Hodgson <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > Wim Goffin: > > > But just to make sure I'm on the right track, > > - Is XBM the best way to for bitmaps? The ones I saw so far are all black > > and white. Do they also exist in color? > >XPM is the version of X

Re: Tkinter Bitmap Newbie question

2005-03-15 Thread Eric Brunel
On Tue, 15 Mar 2005 00:00:57 GMT, Neil Hodgson <[EMAIL PROTECTED]> wrote: Wim Goffin: But just to make sure I'm on the right track, - Is XBM the best way to for bitmaps? The ones I saw so far are all black and white. Do they also exist in color? XPM is the version of XBM with colour. - Is XBM al

Re: Tkinter Bitmap Newbie question

2005-03-14 Thread Neil Hodgson
Wim Goffin: > But just to make sure I'm on the right track, > - Is XBM the best way to for bitmaps? The ones I saw so far are all black > and white. Do they also exist in color? XPM is the version of XBM with colour. > - Is XBM also the best format for glyphs on the Windows platform? Or woul

Re: Tkinter Bitmap Newbie question

2005-03-14 Thread Wim Goffin
Thanks for all reactions. I can load the bitmap now thanks to your help. But just to make sure I'm on the right track, - Is XBM the best way to for bitmaps? The ones I saw so far are all black and white. Do they also exist in color? - Is XBM also the best format for glyphs on the Windows platform

Re: Tkinter Bitmap Newbie question

2005-03-13 Thread Raseliarison nirinA
"Wim Goffin" wrote: >>> Hi, hello, >>> I'm trying to get a bitmap onto a button, but I can't. >>> Can anyone tell me where to look for a solution? >>> >>> The call I use is this one: >>> self.b = Button(toolbar, text="nieuw", bitmap="@/test.xbm", >>> width=20, command=self.print_msg) >>> >>> The

Re: Tkinter Bitmap Newbie question

2005-03-12 Thread Diez B. Roggisch
Posting the same question three times is unecessary and is likely to upset people! > TclError: error reading bitmap file "\test.xbm" This is no valid path name - nor is "@/test.xbm", at least to my knowledge. What happens if you supply the full path like this: path = "C:\\somedir\\test.xbm" --