At 11:19 PM -0700 10/8/02, Nick Amato wrote: >When I run/debug the program I get an error that the index is out of range >when it gets to the line > > DataH = DmGetRecord(gDatabase, index);
Your database is empty at that point; you have created the database but not put any records into it yet. Call DmNewRecord or DmAttachRecord to create records, not DmGetRecord. Hal -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
