Cultue/ Globalization /Region

J

Jack Russell

I am still trying to understand which bit of software does what.

msgbox (color.green.name)

Returns "Green"

If I load .net framework 1.1 for France and set my region to France.

It still returns Green.

If I had a French operating system would it return Vert??

(Feel free to give me answer about any language/ culture/ region as long
as the answer is in English!)

Many thanks

Jack Russell
 
C

Cor Ligthert [MVP]

Jack,

For me this is a compiler part and not yet enumerated in Net. framework.
Because that it is done, and I see your message I start to think that it is
not impossible that it is unlucky enough planned for future use.

Luckily it returns at the moment 'green'. For non localy English speaking
developpers it is mostly a hell if they have to use a tool which returns
their native language while the toolbuilders where English (in the
development part). Mainly because the documentation is to late or will even
never be done in their local language.

There are parts that are returned in the language of the local Net version.
Have you ever searched for an error that is given mixed in 2 languages?

This is of course for every language as the tool is *originaly* build in and
can be for the same sake be German.

Just my idea

Cor
 
H

Herfried K. Wagner [MVP]

Jack Russell said:
msgbox (color.green.name)

Returns "Green"

If I load .net framework 1.1 for France and set my region to France.

It still returns Green.

If I had a French operating system would it return Vert??

No. It will AFAIK always return "Green".
 
C

Cor Ligthert [MVP]

Herfried,

I am curious about that, is that as well in your German VS?

I hope so.

Cor
 
A

Armin Zingler

Cor Ligthert said:
Herfried,

I am curious about that, is that as well in your German VS?

I hope so.


It is. The values are string literals within the code in System.Drawing.dll.
They are not localized resources.


Armin
 
J

Jack Russell

Armin said:
It is. The values are string literals within the code in
System.Drawing.dll. They are not localized resources.


Armin
So what is the difference in the .net regional versions?
Is it just the language used in the setup?
 
H

Herfried K. Wagner [MVP]

Jack Russell said:
So what is the difference in the .net regional versions?

This depends on the version of the .NET Framework you are using.

If you are using .NET Framework 1.1 setup is in English only. In .NET
Framework 2.0 the setup is localized, although no additional language packs
are installed by default. Language packs for .NET Framework 2.0 will be
available in some months.
 
J

Jack Russell

Herfried said:
This depends on the version of the .NET Framework you are using.

If you are using .NET Framework 1.1 setup is in English only. In .NET
Framework 2.0 the setup is localized, although no additional language
packs are installed by default. Language packs for .NET Framework 2.0
will be available in some months.

Herfried,

Surely that is not right, there are a host of setups for .net framework 1.1

I have been testing using the English and French.
I believe that there are different setups for he service pack.

Jack
 
H

Herfried K. Wagner [MVP]

Jack Russell said:
Surely that is not right, there are a host of setups for .net framework
1.1

There were localized versions of the .NET Framework 1.1 available, that's
true. I was referring to the (English) "standard" version, which included
English resources only.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top