>I loaded my app & its databases onto my IIIx (fresh load). The app is about
>10K and the databases are about 80K. After the HotSync I got the message on
>my screen that I had to reset the Palm, which I did.

>What causes this message? Is it something about my application, or was it a
>result of loading a database that requires a considerable number of memory
>chunks?

There is a bit in the database attributes that tells the Palm to reset after
HotSync. Make sure that this bit is cleared. It would be something like:

DmDatabaseInfo (cardNo, dbID, 0, &attr, 0, 0, 0, 0, 0, 0, 0, 0, 0);
attr &= ~dmHdrAttrResetAfterInstall;
DmSetDatabaseInfo(cardNo, dbID, 0, &attr, 0, 0, 0, 0, 0, 0, 0 ,0, 0);

// Niklas

Reply via email to