Hello,
I am trying to use double density bitmaps in my palm application and I
don't really know why, but I am only getting regular density bitmaps to
be displayed. My resource file contains:
BITMAPFAMILYEX ID LogoBMPID
BEGIN
BITMAP "visor_splash copy1.bmp" BPP 1 DENSITY 72 COMPRESS TRANSPARENT
255 255 255
BITMAP "visor_splash copy2.bmp" BPP 8 DENSITY 72 COMPRESS TRANSPARENT
255 255 255
BITMAP "visor_splash copy4.bmp" BPP 8 DENSITY 144 COMPRESS TRANSPARENT
255 255 255
END
For the Form, the code looks like:
FORM ID AboutForm AT (2 2 156 156)
USABLE MODAL
BEGIN
TITLE "About"
FORMBITMAP AT (20 12) BITMAP LogoBMPID
BUTTON "OK" ID AboutFormOK AT (5 BOTTOM@[EMAIL PROTECTED]
AUTO AUTO)
END
Now, whenever I show this form, it will only display the single density
image. Is there anything I need to do when displaying this form or
anything I need to change in the above code to get this to work.
Other information that you might need to know is the image is 144x42
for the single density image and 288x84 for the double density image.
Also, is there any way to display a 1.5X density image. Thanks in
advance.
Matt Zimmerman