Jochen Hammer wrote:
> When I try to load the pdb File to POSE, I get the error:
> 'Could not install ...pdb, because Palm OS Error 521 occurred'

First, you need to figure out what error code 521 means.

When POSE says "Palm OS Error x" it means it is one of the error codes
defined in the system header files.  Doing the math should lead you to
these lines:

    // in <SystemMgr.h>
    #define  dmErrorClass  0x0200  // Data Manager

    // in <DataMgr.h>
    #define  dmErrCorruptDatabase  (dmErrorClass | 9)

So dmErrCorruptDatabase (( 0x200|9 ) == 521) is the error.  Now at least
you can concentrate on how the pdb somehow got corrupted.

-slj-

Reply via email to