> From: David Fedor
>
> let me know if this doesn't make sense or if there's
> anything wrong!
>
David, I think you're going to need some type casts for this to work on a
C++ compiler. (I could be wrong -- I normally use C for my Palm apps.)
E.g., in the following:
> void *theList;
> UInt16 defaultValue;
> ...
> LstSetSelection(theList, defaultValue);
>
You probably have to change it to:
LstSetSelection((ListType *)theList, defaultValue);
and you may even have to change defaultValue from UInt16 to Int16.
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/