Hi,

I have read the "Construtor for Palm OS" in the SDKs.

It tells me to use the following code to access the sting lists resource:

    Char mystring[60];
    SysStringByIndex(MyStringList,0,mystring,sizeof(mystring));
    SysStringByIndex(MyStringList,1,mystring,sizeof(mystring));

So I add such code in my project,
    Char prefix[60];

    case frmOpenEvent:
          form=FrmGetActiveForm();

           SysStringByIndex(PrefixStringList,0,prefix,sizeof(prefix));
           SysStringByIndex(PrefixStringList,1,prefix,sizeof(prefix));

           handled=true;
           break;

but it seems that it dones't work.

How can I access the String List Resoure and display the string list on the
form normally?

Thanks a lot !

Susan



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to