Sanjib.
You need to think more about your programming problems and do a few tests
before posting, you already have the code that you need for doing this.
I just want to clarify that we are in this forum to help each other, clarify
our doubts and get second opinions about programming on PalmOS, not to make
someone else's program.
If you insist in posting questions without first give yourself a chance to
solve it from your own, you will receive no more answers to your posts
This can be made in such diferent ways, you can modify the structure from
the same code I wrote yesterday to include an 2D arrary of integers to hold
the cpt codes, so you will have what you need, I think this option will
serve you better for the simplicity so you will store a name with 10 dates
with 10 cpt codes per date.
typedef struct namesdb
{
char name[40];
UInt32 dates[10]; // Every date on palm are stored like in seconds
since 01/Jan/1904
UInt32 cpt[10][10];
} namesDBrecord;
And you can create a second database to store the cpt descriptions along
with the cpt codes to retrive the description of the cpt code later on your
program, thus by searching in the second database for the cpt code that you
will get from consulting the cpt code from the first database.
typedef struc cptcodes
{
UInt32 cpt;
char desc[40];
] cptCodesRecord;
Eduardo Orea.
"sanjib mohanty" <[EMAIL PROTECTED]> escribió en el mensaje
news:[EMAIL PROTECTED]
Hai this is sanjib,
if we click on the date it should be displayed some 10 cpt codes,can
any boday send the code
plz
Regards
Sanjib
--
For information on using the PalmSource Developer Forums, or to unsubscribe,
please see http://www.palmos.com/dev/support/forums/