judge which kind of charset a character belongs to?
Tue, 16 Oct 2007 19:53:01 -0700
Dear all:
A character or a character string, possibly is simplified
Chinese,traditional Chinese and English,
I want to know how to judge which kind of character collection it belongs to?
Thanks a lot.
...
|
Database localization
Wed, 3 Oct 2007 15:01:36 -0400
I understand how to localize forms when all the strings are in the res file,
but what about when some strings are in a database. For instance, say you
have a datagrid that pulls the column names from a table (like below).
tableGrid
ColumnName varchar
ColumnDisplayText varchar
ColumnFormat varchar
Visible ...
|
Translate application interface at runtime
Thu, 27 Sep 2007 14:25:18 -0700
Hi,
I never worked with resource strings, so I don't know if this can help
me
I need to make an application that must have the UI in two languages.
Can I accomplish this by using string resources? Can anyone give me a
code example on how to use resource strings to set up the labels in
interface? And how to u ...
|
Simple question on CUlture
Tue, 25 Sep 2007 06:56:00 -0700
Dear all,
I ma building a new applciation under Vista. how compny MSUT deliver this
application to our customer in there own language, the tricky thing all the
time.
For that I was planning to get a table name Language as follow :
Name Id Culture
==== == ==============
...
|
globalization
Mon, 24 Sep 2007 12:32:54 -0000
Hi everybody,
I'm trying to create an international website with ASP .NET 2
I'd like that users can choose their preferred language independently
from the browser language.
The MSDN example at: http://msdn2.microsoft.com/en-us/library/bz9tc508.aspx
permit that changing the Thread UICulture. But from me, i ...
|
HTML french caracters
Sun, 23 Sep 2007 09:21:08 -0700
Hi
I wonder if in .NET there is a solution to encode french caraters so
they can displuay correctly.
Up to now this is what i do :
content = content.Replace("é", "é");
content = content.Replace("É", "É");
content = content.Replace("è", "è");
conten ...
|
Localization ASP.NET WebControl question
Wed, 19 Sep 2007 23:24:44 -0000
Greetings
I'm developing a WebControl and I need to check the Page.Culture
property in DESIGN time, in order to display the proper contents on
the WebControl.
I have run out of ideas of how to do it.
I've even checked the Page.Culture in the Reflector and it show in
plain english that the Page.Culture pr ...
|
|
|
Removing diacritics
Thu, 13 Sep 2007 13:29:36 +0200
Hi,
is there any other way to remove diacritics in .NET, than
StringBuilder normalized = new
StringBuilder("aáùø".Normalize(NormalizationForm.FormD));
for (int i = 0; i < normalized.Length; i++)
if (char.GetUnicodeCategory(normalized[i]) ==
UnicodeCategory.NonSpacingMark)
{
normalized.Re ...
|
Re: Forcing exception messages to English
Tue, 11 Sep 2007 12:38:47 +0200
Hello, I don't know the answer for your problem (although interested in it
as well), but
" I cannot even tell what class of
exception it is as the reporting function is not a catch() but a
handler which takes a base Exception parameter"
class Program
{
static void Main(string[] args)
...
|
Determining whether the text is RTL
Tue, 11 Sep 2007 12:29:57 +0200
Hello,
I entered a little problem concerning automatic text alignment in WPF
mentioned at http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2123352
and it seems I'd have to do the workaround myself, yet this group seems more
appropriate to look for the answer in.
The application gets some text (fro ...
|