--- Ravindra wrote: > i am getting SysFatalAlert with message: > "DataMgr.c, Line:7025,DmWrite:DmWriteCheckFailed" > Please help me to know why i am getting such > meassage.
The OS calls DmWriteCheck before it does DmWrite. DmWriteCheck can fail if you try to write to an invalid record or if you try to write beyond the bounds of a valid record. Before calling DmWrite in your code, you can call DmWriteCheck yourself. Then look to see if it returns dmErrNotValidRecord, dmErrWriteOutOfBounds, or errNone. You should only proceed with DmWrite if DmWriteCheck returns errNone. __________________________________________________ Do You Yahoo!? Listen to your Yahoo! Mail messages from any phone. http://phone.yahoo.com -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
