473,320 Members | 1,804 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Get Culture Info from Language Name

hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky

Jan 31 '07 #1
12 2108
You need to pass the culture name, i.e. "da-DK", "de-DE" or "ru-RU". The
following link shows the complete list:
http://msdn2.microsoft.com/en-us/lib...ltureinfo.aspx

Regards, Jakob.
--
http://www.dotninjas.dk

"lucky" wrote:
hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky

Jan 31 '07 #2
Hi,

"NL-nl" Holland
"NL-be" Belgium
"EN-uk" Greath Brittain

is this what you mean?

Cor

"lucky" <tu************@gmail.comschreef in bericht
news:11*********************@a75g2000cwd.googlegro ups.com...
hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky

Jan 31 '07 #3
On 31 Jan 2007 03:29:07 -0800, "lucky" <tu************@gmail.com>
wrote:
>hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky
There is a full set of "Culture Names and Identifiers" in .NET, they
are shown if you search the internal Help for the CultureInfo class.

"The culture names follow the RFC 1766 standard in the format
"<languagecode2>-<country/regioncode2>", where <languagecode2is a
lowercase two-letter code derived from ISO 639-1 and
<country/regioncode2is an uppercase two-letter code derived from ISO
3166. For example, U.S. English is "en-US". In cases where a
two-letter language code is not available, the three-letter code
derived from ISO 639-2 is used; for example, the three-letter code
"div" is used for cultures that use the Dhivehi language. Some culture
names have suffixes that specify the script; for example, "-Cyrl"
specifies the Cyrillic script, "-Latn" specifies the Latin script."

Remember that what you program sees initially might not be "German"
but "Deutsch" and that "Russian" could well be in Cyrillic characters.
In general this is not a simple problem.

rossum

Jan 31 '07 #4
On Jan 31, 1:05 pm, "Cor Ligthert \(MVP\)" <notmyfirstn...@planet.nl>
wrote:
Hi,

"NL-nl" Holland
"NL-be" Belgium
"EN-uk" Greath Brittain

is this what you mean?

Cor

"lucky" <tushar.n.pa...@gmail.comschreef in berichtnews:11*********************@a75g2000cwd.go oglegroups.com...
hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.
i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.
can anyone help me out here?
i would appriciate any help.
thanks,
Lucky
hey pal,
what i mean is i only want to pass the name of the laguage, like only
"Danish". nothing else.
but it seems it's preety hard to determine culture from language name.
Lucky

Jan 31 '07 #5

"lucky" <tu************@gmail.comwrote in message
news:11*********************@a75g2000cwd.googlegro ups.com...
hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.
foreach ( CultureInfo ci in
CultureInfo.GetCultures(CultureTypes.NeutralCultur es) ) {

if (ci.EnglishName == "Danish") {

....

}

}
Jan 31 '07 #6
Or, you could simply use these :

CultureInfo.CurrentCulture.EnglishName
CultureInfo.CurrentCulture.DisplayName
CultureInfo.CurrentCulture.NativeName


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:4F**********************************@microsof t.com...
You need to pass the culture name, i.e. "da-DK", "de-DE" or "ru-RU". The
following link shows the complete list:
http://msdn2.microsoft.com/en-us/lib...ltureinfo.aspx

Regards, Jakob.
--
http://www.dotninjas.dk

"lucky" wrote:
>hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky


Jan 31 '07 #7
The OP wants to create a new CultureInfo from EnglishName which can not be
done easily. I do not think that CurrentCulture is of much use here.

:-) Jakob.

"Juan T. Llibre" wrote:
Or, you could simply use these :

CultureInfo.CurrentCulture.EnglishName
CultureInfo.CurrentCulture.DisplayName
CultureInfo.CurrentCulture.NativeName


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:4F**********************************@microsof t.com...
You need to pass the culture name, i.e. "da-DK", "de-DE" or "ru-RU". The
following link shows the complete list:
http://msdn2.microsoft.com/en-us/lib...ltureinfo.aspx

Regards, Jakob.
--
http://www.dotninjas.dk

"lucky" wrote:
hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky



Jan 31 '07 #8
re:
create a new CultureInfo from EnglishName which can not be done easily
Aw, that's not so hard to do :

http://asp.net.do/test/culture3.aspx

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:5A**********************************@microsof t.com...
The OP wants to create a new CultureInfo from EnglishName which can not be
done easily. I do not think that CurrentCulture is of much use here.

:-) Jakob.

"Juan T. Llibre" wrote:
>Or, you could simply use these :

CultureInfo.CurrentCulture.EnglishName
CultureInfo.CurrentCulture.DisplayName
CultureInfo.CurrentCulture.NativeName


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:4F**********************************@microso ft.com...
You need to pass the culture name, i.e. "da-DK", "de-DE" or "ru-RU". The
following link shows the complete list:
http://msdn2.microsoft.com/en-us/lib...ltureinfo.aspx

Regards, Jakob.
--
http://www.dotninjas.dk

"lucky" wrote:

hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky




Jan 31 '07 #9
Excellent. You might want to post the code here for the OP to see?

:-) Jakob.
"Juan T. Llibre" wrote:
re:
create a new CultureInfo from EnglishName which can not be done easily

Aw, that's not so hard to do :

http://asp.net.do/test/culture3.aspx

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:5A**********************************@microsof t.com...
The OP wants to create a new CultureInfo from EnglishName which can not be
done easily. I do not think that CurrentCulture is of much use here.

:-) Jakob.

"Juan T. Llibre" wrote:
Or, you could simply use these :

CultureInfo.CurrentCulture.EnglishName
CultureInfo.CurrentCulture.DisplayName
CultureInfo.CurrentCulture.NativeName


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:4F**********************************@microsof t.com...
You need to pass the culture name, i.e. "da-DK", "de-DE" or "ru-RU". The
following link shows the complete list:
http://msdn2.microsoft.com/en-us/lib...ltureinfo.aspx

Regards, Jakob.
--
http://www.dotninjas.dk

"lucky" wrote:

hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky




Jan 31 '07 #10
re:
You might want to post the code here for the OP to see?
Why not?

If I had a nickel for every line of code I've given away for free here
....well, you know how the rest of that goes. :-)

Here's the crux...and the trick.

<%@ Page Language="VB" uiculture="auto" %>
<%@ Import Namespace="System.Threading" %>
<%@ Import Namespace="System.Globalization" %>

<script runat="server">
Protected Overrides Sub InitializeCulture()
If Request.Form("ListBox1") IsNot Nothing Then
Dim selectedLanguage As String = Request.Form("ListBox1")
UICulture = Request.Form("ListBox1")
Culture = Request.Form("ListBox1")
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(selectedLanguage )
Thread.CurrentThread.CurrentUICulture = New CultureInfo(selectedLanguage)
End If
MyBase.InitializeCulture()
End Sub
</script>

<form id="form1" runat="server">
<div>
<asp:ListBox ID="ListBox1" runat="server">
<asp:ListItem Value="en-US" Selected="True">English</asp:ListItem>
<asp:ListItem Value="es-MX">Español</asp:ListItem>
<asp:ListItem Value="de-DE">Deutsch</asp:ListItem>
</asp:ListBox><br />
<asp:Button ID="Button1" runat="server"
Text="Set Language"
meta:resourcekey="Button1" />
<br />
</div>

The trick, as should be obvious by now, is that you don't *need* to pass the EnglishName.

The value that we *do* pass is CultureInfo.CurrentCulture.Name,
but we *display* whatever name we want to display to the user.

That way, it's transparent to the user *and* easy to program as well.

One of the most difficult concepts to grasp in programming
is that we should not attempt to lock a route to the desired result.

As long as we get where we want to get to, any route is OK.

Some routes are impossible and some are a waste,
but getting to where we want to get, with the least effort expended, is what counts.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:4D**********************************@microsof t.com...
Excellent. You might want to post the code here for the OP to see?

:-) Jakob.
"Juan T. Llibre" wrote:
>re:
create a new CultureInfo from EnglishName which can not be done easily

Aw, that's not so hard to do :

http://asp.net.do/test/culture3.aspx

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:5A**********************************@microso ft.com...
The OP wants to create a new CultureInfo from EnglishName which can not be
done easily. I do not think that CurrentCulture is of much use here.

:-) Jakob.

"Juan T. Llibre" wrote:

Or, you could simply use these :

CultureInfo.CurrentCulture.EnglishName
CultureInfo.CurrentCulture.DisplayName
CultureInfo.CurrentCulture.NativeName


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:4F**********************************@microso ft.com...
You need to pass the culture name, i.e. "da-DK", "de-DE" or "ru-RU". The
following link shows the complete list:
http://msdn2.microsoft.com/en-us/lib...ltureinfo.aspx

Regards, Jakob.
--
http://www.dotninjas.dk

"lucky" wrote:

hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky






Jan 31 '07 #11
Aaah, but you still have not solved Lucky's problem (the OP). You are just
using the culture name (i.e. "en-US" etc.) as I suggested in my first reply
to the OP. Lucky wants to create the CultureInfo directly from the string
"Danish" or "Russian". Nobody says that he can do what you did.

:-) Jakob.

"Juan T. Llibre" wrote:
re:
You might want to post the code here for the OP to see?

Why not?

If I had a nickel for every line of code I've given away for free here
....well, you know how the rest of that goes. :-)

Here's the crux...and the trick.

<%@ Page Language="VB" uiculture="auto" %>
<%@ Import Namespace="System.Threading" %>
<%@ Import Namespace="System.Globalization" %>

<script runat="server">
Protected Overrides Sub InitializeCulture()
If Request.Form("ListBox1") IsNot Nothing Then
Dim selectedLanguage As String = Request.Form("ListBox1")
UICulture = Request.Form("ListBox1")
Culture = Request.Form("ListBox1")
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(selectedLanguage )
Thread.CurrentThread.CurrentUICulture = New CultureInfo(selectedLanguage)
End If
MyBase.InitializeCulture()
End Sub
</script>

<form id="form1" runat="server">
<div>
<asp:ListBox ID="ListBox1" runat="server">
<asp:ListItem Value="en-US" Selected="True">English</asp:ListItem>
<asp:ListItem Value="es-MX">Español</asp:ListItem>
<asp:ListItem Value="de-DE">Deutsch</asp:ListItem>
</asp:ListBox><br />
<asp:Button ID="Button1" runat="server"
Text="Set Language"
meta:resourcekey="Button1" />
<br />
</div>

The trick, as should be obvious by now, is that you don't *need* to pass the EnglishName.

The value that we *do* pass is CultureInfo.CurrentCulture.Name,
but we *display* whatever name we want to display to the user.

That way, it's transparent to the user *and* easy to program as well.

One of the most difficult concepts to grasp in programming
is that we should not attempt to lock a route to the desired result.

As long as we get where we want to get to, any route is OK.

Some routes are impossible and some are a waste,
but getting to where we want to get, with the least effort expended, is what counts.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:4D**********************************@microsof t.com...
Excellent. You might want to post the code here for the OP to see?

:-) Jakob.
"Juan T. Llibre" wrote:
re:
create a new CultureInfo from EnglishName which can not be done easily

Aw, that's not so hard to do :

http://asp.net.do/test/culture3.aspx

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:5A**********************************@microsof t.com...
The OP wants to create a new CultureInfo from EnglishName which can not be
done easily. I do not think that CurrentCulture is of much use here.

:-) Jakob.

"Juan T. Llibre" wrote:

Or, you could simply use these :

CultureInfo.CurrentCulture.EnglishName
CultureInfo.CurrentCulture.DisplayName
CultureInfo.CurrentCulture.NativeName


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:4F**********************************@microsof t.com...
You need to pass the culture name, i.e. "da-DK", "de-DE" or "ru-RU". The
following link shows the complete list:
http://msdn2.microsoft.com/en-us/lib...ltureinfo.aspx

Regards, Jakob.
--
http://www.dotninjas.dk

"lucky" wrote:

hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky




Jan 31 '07 #12
Still, working around a programming task is better than not doing anything, right ?

What I'm saying ( and it's a bit hard to understand, I know )
is that we should not get hung up on a particular way of doing a task.

As long as we deliver a solution, it's OK.

The OP certainly won't be needing to deliver a solution
for *all* the possible languages/cultures, right ?

So, the proposed solution I coded *will* work for a fairly large
subset of the available languages/cultures ( the ones which
will fit into the Listbox without making it an unwieldy instrument ).


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:56**********************************@microsof t.com...
Aaah, but you still have not solved Lucky's problem (the OP). You are just
using the culture name (i.e. "en-US" etc.) as I suggested in my first reply
to the OP. Lucky wants to create the CultureInfo directly from the string
"Danish" or "Russian". Nobody says that he can do what you did.

:-) Jakob.

"Juan T. Llibre" wrote:
>re:
You might want to post the code here for the OP to see?

Why not?

If I had a nickel for every line of code I've given away for free here
....well, you know how the rest of that goes. :-)

Here's the crux...and the trick.

<%@ Page Language="VB" uiculture="auto" %>
<%@ Import Namespace="System.Threading" %>
<%@ Import Namespace="System.Globalization" %>

<script runat="server">
Protected Overrides Sub InitializeCulture()
If Request.Form("ListBox1") IsNot Nothing Then
Dim selectedLanguage As String = Request.Form("ListBox1")
UICulture = Request.Form("ListBox1")
Culture = Request.Form("ListBox1")
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(selectedLanguage )
Thread.CurrentThread.CurrentUICulture = New CultureInfo(selectedLanguage)
End If
MyBase.InitializeCulture()
End Sub
</script>

<form id="form1" runat="server">
<div>
<asp:ListBox ID="ListBox1" runat="server">
<asp:ListItem Value="en-US" Selected="True">English</asp:ListItem>
<asp:ListItem Value="es-MX">Español</asp:ListItem>
<asp:ListItem Value="de-DE">Deutsch</asp:ListItem>
</asp:ListBox><br />
<asp:Button ID="Button1" runat="server"
Text="Set Language"
meta:resourcekey="Button1" />
<br />
</div>

The trick, as should be obvious by now, is that you don't *need* to pass the EnglishName.

The value that we *do* pass is CultureInfo.CurrentCulture.Name,
but we *display* whatever name we want to display to the user.

That way, it's transparent to the user *and* easy to program as well.

One of the most difficult concepts to grasp in programming
is that we should not attempt to lock a route to the desired result.

As long as we get where we want to get to, any route is OK.

Some routes are impossible and some are a waste,
but getting to where we want to get, with the least effort expended, is what counts.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:4D**********************************@microso ft.com...
Excellent. You might want to post the code here for the OP to see?

:-) Jakob.
"Juan T. Llibre" wrote:

re:
create a new CultureInfo from EnglishName which can not be done easily

Aw, that's not so hard to do :

http://asp.net.do/test/culture3.aspx

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:5A**********************************@microso ft.com...
The OP wants to create a new CultureInfo from EnglishName which can not be
done easily. I do not think that CurrentCulture is of much use here.

:-) Jakob.

"Juan T. Llibre" wrote:

Or, you could simply use these :

CultureInfo.CurrentCulture.EnglishName
CultureInfo.CurrentCulture.DisplayName
CultureInfo.CurrentCulture.NativeName


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Jakob Christensen" <Ja**************@discussions.microsoft.comwrote in message
news:4F**********************************@microso ft.com...
You need to pass the culture name, i.e. "da-DK", "de-DE" or "ru-RU". The
following link shows the complete list:
http://msdn2.microsoft.com/en-us/lib...ltureinfo.aspx

Regards, Jakob.
--
http://www.dotninjas.dk

"lucky" wrote:

hi guys,
right now i'm going through System.Globalization Namespace. and i
found very intersting class there called CultureInfo.

i was trying to get cultureInfo on the basis of name but i didnt find
the way to do it. for example, if i pass the language name
"Danish","German",Russian", i'm suppose to get the cultureInfo object
of the language.

can anyone help me out here?
i would appriciate any help.

thanks,
Lucky






Jan 31 '07 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Dejan Vesic | last post by:
I found nasty "documentation" bug; ms-help://MS.VSCC/MS.MSDNVS/cpref/html/frlrfsystemglobalizationcultureinfoclasstopic.htm claims that proper culture info name for Serbian (Cyrillic) - Serbia...
3
by: Ashish | last post by:
I have a application in which culture settings are customizable, they dont depend on the machine settings on which the application is running, I need to make sure that all the threads running in...
9
by: Edge | last post by:
hi, I am saving the user selected culture in a session variable so I can apply it back to all pages when refreshed and then load the proper .resx values. For that I am using global.asax
1
by: David Thielen | last post by:
Hi; How do I get the client user culture? I need to get the names for the weeks/months, num days/week, months/year, days/month, etc to display date selections to the user correctly. --...
3
by: shapper | last post by:
Hello, I am working on a multilanguage Asp.Net 2.0 web site. I need to do the following: 1. Set a default culture in Web.Config File. 2. Create a function which changes culture when pressed....
12
by: lucky | last post by:
hi guys, right now i'm going through System.Globalization Namespace. and i found very intersting class there called CultureInfo. i was trying to get cultureInfo on the basis of name but i didnt...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.