I do not know if DBMaker uses a packed or unpacked format(that may be part of my problem).
That's your first problem. Your second problem is your record structure:
typedef struct ListOneType
{
Char * string1;
Char * string2;
Char * string3;
UInt16 value1;
} ListOneType;DBMaker will not store your strings as string pointers. Each record will contain strings, not string pointers. They may be fixed length or they may be variable length.
You really have to find out how DBmaker stores it's data before you can make much progress.
Regards, Steve Mann --- [EMAIL PROTECTED] Available for Contract Work
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
