> After knowing which OS Language my application
> is running on, how can i decide which App
> Resources (Forms, Alerts, Bitmaps, etc) to
> show accordingly to the user?
Presumably in your AppMain() you handle the
sysAppLaunchCmdNormalLaunch code with a call to
FrmGotoForm(MyMainForm).
Wouldn't it be as easy as replacing this with
switch (language) {
case GERMAN:
FrmGotoForm(MyMainFormGerman);
break;
case FRENCH:
FrmGotoForm(MyMainFormFrench);
break;
...
default:
FrmGotoForm(MyMainFormEnglish);
}
And of course, elsewhere you refer to resources
(e.g., when you pre-populate fields) you
need to do something similar, so you probably
want to encapsulate the "selection" of the resource
in some sort of central function.
Oliver
__________________________________________________
Do you Yahoo!?
Y! Web Hosting - Let the expert host your web site
http://webhosting.yahoo.com/
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/support/forums/