On Apr 06, 2007, at 21:55 UTC, GregO wrote:

> Can anyone tell me why Non-dynamic string constants do not localize, 
> but number constants do?

I don't believe number constants do (and your example certainly didn't
show that).

> Why don't String Constants correctly localize when they're not
> dynamic?

They do localize, just not dynamically -- that being the whole point of
being non-dynamic.  The proper value is chosen at build time based on
your build settings, and compiled right into the code of your app.  The
other values are not included in that particular executable at all.  So
of course the system language settings have nothing to do with it.

Dynamic constants, on the other hand, aren't really constants at all;
they're variables which are automatically loaded at run time with the
appropriate values based on the system settings.

Best,
- Joe

--
Joe Strout -- [EMAIL PROTECTED]
Verified Express, LLC     "Making the Internet a Better Place"
http://www.verex.com/

_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to