On Thu, 28 Feb 2002, Paul Nevai wrote:
> If you check out the description of FrmHideObject(), you will see that
>
> #############################################################################
> Prior to OS version 3.2, this function did not set the usable bit of the
> object attribute data to false. On an OS version prior to 3.2 you can work
> around this bug by directly setting this bit to false yourself.
> #############################################################################
>
> BUT when you do a
>
> frmP->objects[objIndex].object.bitmap->attr.usable = false;
>
> job, POSE complains. Could this complaint be eliminated? It is a major
> nuisance. /Paul N.
come on paul.. you can get around this!
if (palmos_3_2_supported)
FrmHideObject(...);
else
frmP->objects[objIndex].object.bitmap->attr.usable = false;
that'll solve the complaints by POSE, and, you can make an exception
for palmos versions prior to 3.2. it tell you do this. they cannot
fix things in OLDER os versions, however, you can make exceptions in
your code and fix.
// az
[EMAIL PROTECTED]
http://www.ardiri.com/
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/