Ahh, that helps.
I ended up doing it like you say with UInt16s. Here's the code I ended up
with in the end, if anyone's curious:
<<<CODE>>>
Int16 month = pdtTempData->Age.month,
day = pdtTempData->Age.day,
year = pdtTempData->Age.year + 1904;
SelectDay(selectDayByDay, &month,
&day,
&year,
"Select date of birth");
// Save the changes
pdtTempData->Age.month = month;
pdtTempData->Age.day = day;
pdtTempData->Age.year = year - 1904;
<<<END>>>
Thanks. I didn't know that you couldn't pass bitfields. Those bitfields
sure do cut down on space in my database! Thanks!
-Jimi
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/