--- Charles Rezsonya wrote: > what are the benefits of moving some > routines/functions into a library ?
Primarily, the benefit is that several apps can share those routines. So, if you create several apps that share functionality, and if people are likely to install more than one of those apps on a single device, then you can save them some space by putting the shared functions in the library. The main downside (though you only asked for benefits) is that some users appear to have difficulty installing multiple files on their handheld and none of your apps will work unless the library is there. Plus, you have to make sure the library gets deleted when your app gets deleted, but not if another app on the device needs it. __________________________________________________ Do You Yahoo!? Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1 -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
