> Well the returned error code is 519, consistantly. What is
> 519??????? I have looked into the DataMgr.h file , but none
> of the error codes defined equal 519.
No, in fact <DataMgr.h> does have an error code of 519. Here:
#define dmErrCantFind (dmErrorClass | 7)
...which should lead you back to <ErrorBase.h> (or whatever this file was
called pre-3.5) where you find this line:
#define dmErrorClass 0x0200 // Data Manager
That's how Palm OS error codes are built: each module has a range of codes
starting at a round number base (0x200 in this case) with the individual
codes increasing by 1.
-slj-