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
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
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
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
"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
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"
--