I have found that on a regular form ( FrmGotoForm ) I could do:

LstSetListChoices( plist, NULL, 5 );
LstSetSelection( plist, -1 );
LstSetDrawFunction( plist, ListDrawFunc );

but this fails when the list is on a dialog called with FrmDoDialog.  I need 
to put the selection call after the setfunc call, like this:

LstSetListChoices( plist, NULL, 5 );
LstSetDrawFunction( plist, ListDrawFunc );
LstSetSelection( plist, -1 );

Is this behavior expected/normal/appropriate/beneficial/put you in a happy 
place.... :-)

spike

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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

Reply via email to