473,795 Members | 2,834 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

build a bilingual web?

Hi,

Anybody here has experience to build a english/chinese web?

The chap 15 in Developing Web Applications tells sth about how to do this,
but I want to know more details.

It seems detect and redirect are the way for me to do this. Does this mean I
have to have image button on the main page to link to chinese pages? all
chinese pages will duplicate english ones? the following is from the book,
how to get Request.UserLan guages[0]?

Many thanks. -Dale

private void Page_Load(objec t sender, System.EventArg s e)
{
// Get the user's preferred language.
string sLang = Request.UserLan guages[0];
// Get the first two characters of language.
sLang = sLang.Substring (0, 2);
// Redirect user based on his/her culture.
switch (sLang)
{
case "en":
// Use US site.
Response.Redire ct("http://www.contoso.com/usa");
break;
case "es":
// Use Spanish site.
Response.Redire ct("http://www.contoso.com/es");
break;
case "de":
// Use German site.
Response.Redire ct("http://www.contoso.com/de");
break;
case "zh":
// Use Chinese site.
Response.Redire ct("http://www.contoso.com/zh");
break;
default:
// Use US site.
Response.Redire ct("http://www.contoso.com/usa");
break;
}
}
}

Nov 17 '05 #1
9 1759
hi dale,

I think redirecting to different language page is a bad idea uless you have
a different style and content for different languages. The best idea would be
to go for resource file for different languages and setting the cultureinfo
for each language. I have done this for a very big project and i have started
loving ASP.net ever since ;)

cheers!!
pradeep

"dale zhang" wrote:
Hi,

Anybody here has experience to build a english/chinese web?

The chap 15 in Developing Web Applications tells sth about how to do this,
but I want to know more details.

It seems detect and redirect are the way for me to do this. Does this mean I
have to have image button on the main page to link to chinese pages? all
chinese pages will duplicate english ones? the following is from the book,
how to get Request.UserLan guages[0]?

Many thanks. -Dale

private void Page_Load(objec t sender, System.EventArg s e)
{
// Get the user's preferred language.
string sLang = Request.UserLan guages[0];
// Get the first two characters of language.
sLang = sLang.Substring (0, 2);
// Redirect user based on his/her culture.
switch (sLang)
{
case "en":
// Use US site.
Response.Redire ct("http://www.contoso.com/usa");
break;
case "es":
// Use Spanish site.
Response.Redire ct("http://www.contoso.com/es");
break;
case "de":
// Use German site.
Response.Redire ct("http://www.contoso.com/de");
break;
case "zh":
// Use Chinese site.
Response.Redire ct("http://www.contoso.com/zh");
break;
default:
// Use US site.
Response.Redire ct("http://www.contoso.com/usa");
break;
}
}
}

Nov 17 '05 #2
Thanks, Pradeep. I agree that resource file is the right approach. Do you
know where I can find a good material to tell me how to do this?


"pradeep_TP " wrote:
hi dale,

I think redirecting to different language page is a bad idea uless you have
a different style and content for different languages. The best idea would be
to go for resource file for different languages and setting the cultureinfo
for each language. I have done this for a very big project and i have started
loving ASP.net ever since ;)

cheers!!
pradeep

"dale zhang" wrote:
Hi,

Anybody here has experience to build a english/chinese web?

The chap 15 in Developing Web Applications tells sth about how to do this,
but I want to know more details.

It seems detect and redirect are the way for me to do this. Does this mean I
have to have image button on the main page to link to chinese pages? all
chinese pages will duplicate english ones? the following is from the book,
how to get Request.UserLan guages[0]?

Many thanks. -Dale

private void Page_Load(objec t sender, System.EventArg s e)
{
// Get the user's preferred language.
string sLang = Request.UserLan guages[0];
// Get the first two characters of language.
sLang = sLang.Substring (0, 2);
// Redirect user based on his/her culture.
switch (sLang)
{
case "en":
// Use US site.
Response.Redire ct("http://www.contoso.com/usa");
break;
case "es":
// Use Spanish site.
Response.Redire ct("http://www.contoso.com/es");
break;
case "de":
// Use German site.
Response.Redire ct("http://www.contoso.com/de");
break;
case "zh":
// Use Chinese site.
Response.Redire ct("http://www.contoso.com/zh");
break;
default:
// Use US site.
Response.Redire ct("http://www.contoso.com/usa");
break;
}
}
}

Nov 17 '05 #3
hi dale,

When you think of multilingual in classic ASP context then it is a very
dauting task. But in ASP.net its just a matter of setting the right
clutureinfo. You can go through any web site that gives you informtion on
localizing web pages in ASP.net. The below URL would be a good start for you

http://msdn2.microsoft.com/library/f...us,vs.80).aspx

cheers!!
pradeep_TP

"dale zhang" wrote:
Thanks, Pradeep. I agree that resource file is the right approach. Do you
know where I can find a good material to tell me how to do this?


"pradeep_TP " wrote:
hi dale,

I think redirecting to different language page is a bad idea uless you have
a different style and content for different languages. The best idea would be
to go for resource file for different languages and setting the cultureinfo
for each language. I have done this for a very big project and i have started
loving ASP.net ever since ;)

cheers!!
pradeep

"dale zhang" wrote:
Hi,

Anybody here has experience to build a english/chinese web?

The chap 15 in Developing Web Applications tells sth about how to do this,
but I want to know more details.

It seems detect and redirect are the way for me to do this. Does this mean I
have to have image button on the main page to link to chinese pages? all
chinese pages will duplicate english ones? the following is from the book,
how to get Request.UserLan guages[0]?

Many thanks. -Dale

private void Page_Load(objec t sender, System.EventArg s e)
{
// Get the user's preferred language.
string sLang = Request.UserLan guages[0];
// Get the first two characters of language.
sLang = sLang.Substring (0, 2);
// Redirect user based on his/her culture.
switch (sLang)
{
case "en":
// Use US site.
Response.Redire ct("http://www.contoso.com/usa");
break;
case "es":
// Use Spanish site.
Response.Redire ct("http://www.contoso.com/es");
break;
case "de":
// Use German site.
Response.Redire ct("http://www.contoso.com/de");
break;
case "zh":
// Use Chinese site.
Response.Redire ct("http://www.contoso.com/zh");
break;
default:
// Use US site.
Response.Redire ct("http://www.contoso.com/usa");
break;
}
}
}

Nov 17 '05 #4
hi dale,

When you think of multilingual in classic ASP context then it is a very
dauting task. But in ASP.net its just a matter of setting the right
clutureinfo. You can go through any web site that gives you informtion on
localizing web pages in ASP.net. The below URL would be a good start for you

http://msdn2.microsoft.com/library/f...us,vs.80).aspx

cheers!!
pradeep_TP

"dale zhang" wrote:
Thanks, Pradeep. I agree that resource file is the right approach. Do you
know where I can find a good material to tell me how to do this?


"pradeep_TP " wrote:
hi dale,

I think redirecting to different language page is a bad idea uless you have
a different style and content for different languages. The best idea would be
to go for resource file for different languages and setting the cultureinfo
for each language. I have done this for a very big project and i have started
loving ASP.net ever since ;)

cheers!!
pradeep

"dale zhang" wrote:
Hi,

Anybody here has experience to build a english/chinese web?

The chap 15 in Developing Web Applications tells sth about how to do this,
but I want to know more details.

It seems detect and redirect are the way for me to do this. Does this mean I
have to have image button on the main page to link to chinese pages? all
chinese pages will duplicate english ones? the following is from the book,
how to get Request.UserLan guages[0]?

Many thanks. -Dale

private void Page_Load(objec t sender, System.EventArg s e)
{
// Get the user's preferred language.
string sLang = Request.UserLan guages[0];
// Get the first two characters of language.
sLang = sLang.Substring (0, 2);
// Redirect user based on his/her culture.
switch (sLang)
{
case "en":
// Use US site.
Response.Redire ct("http://www.contoso.com/usa");
break;
case "es":
// Use Spanish site.
Response.Redire ct("http://www.contoso.com/es");
break;
case "de":
// Use German site.
Response.Redire ct("http://www.contoso.com/de");
break;
case "zh":
// Use Chinese site.
Response.Redire ct("http://www.contoso.com/zh");
break;
default:
// Use US site.
Response.Redire ct("http://www.contoso.com/usa");
break;
}
}
}

Nov 17 '05 #5
Hi Pradeep,

Thanks for the link. It is really good. based on that, i tried to do this by:
1. go to a designer page
2. on the tools menu, click Generat Local Resource.

I looked around, could not find Generat Local Resource in 2003 VS.

Do I have to do this in 2005 VS?

Thanks. -Dale

"pradeep_TP " wrote:
hi dale,

When you think of multilingual in classic ASP context then it is a very
dauting task. But in ASP.net its just a matter of setting the right
clutureinfo. You can go through any web site that gives you informtion on
localizing web pages in ASP.net. The below URL would be a good start for you

http://msdn2.microsoft.com/library/f...us,vs.80).aspx

cheers!!
pradeep_TP

"dale zhang" wrote:
Thanks, Pradeep. I agree that resource file is the right approach. Do you
know where I can find a good material to tell me how to do this?


"pradeep_TP " wrote:
hi dale,

I think redirecting to different language page is a bad idea uless you have
a different style and content for different languages. The best idea would be
to go for resource file for different languages and setting the cultureinfo
for each language. I have done this for a very big project and i have started
loving ASP.net ever since ;)

cheers!!
pradeep

"dale zhang" wrote:

> Hi,
>
> Anybody here has experience to build a english/chinese web?
>
> The chap 15 in Developing Web Applications tells sth about how to do this,
> but I want to know more details.
>
> It seems detect and redirect are the way for me to do this. Does this mean I
> have to have image button on the main page to link to chinese pages? all
> chinese pages will duplicate english ones? the following is from the book,
> how to get Request.UserLan guages[0]?
>
> Many thanks. -Dale
>
> private void Page_Load(objec t sender, System.EventArg s e)
> {
> // Get the user's preferred language.
> string sLang = Request.UserLan guages[0];
> // Get the first two characters of language.
> sLang = sLang.Substring (0, 2);
> // Redirect user based on his/her culture.
> switch (sLang)
> {
> case "en":
> // Use US site.
> Response.Redire ct("http://www.contoso.com/usa");
> break;
> case "es":
> // Use Spanish site.
> Response.Redire ct("http://www.contoso.com/es");
> break;
> case "de":
> // Use German site.
> Response.Redire ct("http://www.contoso.com/de");
> break;
> case "zh":
> // Use Chinese site.
> Response.Redire ct("http://www.contoso.com/zh");
> break;
> default:
> // Use US site.
> Response.Redire ct("http://www.contoso.com/usa");
> break;
> }
> }
> }
>

Nov 17 '05 #6
Hi Pradeep,

Thanks for the link. It is really good. based on that, i tried to do this by:
1. go to a designer page
2. on the tools menu, click Generat Local Resource.

I looked around, could not find Generat Local Resource in 2003 VS.

Do I have to do this in 2005 VS?

Thanks. -Dale

"pradeep_TP " wrote:
hi dale,

When you think of multilingual in classic ASP context then it is a very
dauting task. But in ASP.net its just a matter of setting the right
clutureinfo. You can go through any web site that gives you informtion on
localizing web pages in ASP.net. The below URL would be a good start for you

http://msdn2.microsoft.com/library/f...us,vs.80).aspx

cheers!!
pradeep_TP

"dale zhang" wrote:
Thanks, Pradeep. I agree that resource file is the right approach. Do you
know where I can find a good material to tell me how to do this?


"pradeep_TP " wrote:
hi dale,

I think redirecting to different language page is a bad idea uless you have
a different style and content for different languages. The best idea would be
to go for resource file for different languages and setting the cultureinfo
for each language. I have done this for a very big project and i have started
loving ASP.net ever since ;)

cheers!!
pradeep

"dale zhang" wrote:

> Hi,
>
> Anybody here has experience to build a english/chinese web?
>
> The chap 15 in Developing Web Applications tells sth about how to do this,
> but I want to know more details.
>
> It seems detect and redirect are the way for me to do this. Does this mean I
> have to have image button on the main page to link to chinese pages? all
> chinese pages will duplicate english ones? the following is from the book,
> how to get Request.UserLan guages[0]?
>
> Many thanks. -Dale
>
> private void Page_Load(objec t sender, System.EventArg s e)
> {
> // Get the user's preferred language.
> string sLang = Request.UserLan guages[0];
> // Get the first two characters of language.
> sLang = sLang.Substring (0, 2);
> // Redirect user based on his/her culture.
> switch (sLang)
> {
> case "en":
> // Use US site.
> Response.Redire ct("http://www.contoso.com/usa");
> break;
> case "es":
> // Use Spanish site.
> Response.Redire ct("http://www.contoso.com/es");
> break;
> case "de":
> // Use German site.
> Response.Redire ct("http://www.contoso.com/de");
> break;
> case "zh":
> // Use Chinese site.
> Response.Redire ct("http://www.contoso.com/zh");
> break;
> default:
> // Use US site.
> Response.Redire ct("http://www.contoso.com/usa");
> break;
> }
> }
> }
>

Nov 17 '05 #7
hi dale,

I am using visual studio 2003, with .net 1.1. Here is what I do to compile
the resource file. I use a bach file to compile the resource file. You can
paste the code below in a batch file for eg. res.bat and run the batch file
from the command prompt

PATH %WINDIR%\Micros oft.NET\Framewo rk\v1.1.4322;%P ATH%

resgen testrest.en-US.resx al
/embed:testrest. en-US.resources,te strest.en-US.resources
/out:testrest.re sources.dll /c:en-US

resgen is a utility which you can find under the folder where .net framework
is installed. You can read more about resgen utility by just typing resgen at
the command prompt.

cheers
pradeep_tp
"dale zhang" wrote:
Hi Pradeep,

Thanks for the link. It is really good. based on that, i tried to do this by:
1. go to a designer page
2. on the tools menu, click Generat Local Resource.

I looked around, could not find Generat Local Resource in 2003 VS.

Do I have to do this in 2005 VS?

Thanks. -Dale

"pradeep_TP " wrote:
hi dale,

When you think of multilingual in classic ASP context then it is a very
dauting task. But in ASP.net its just a matter of setting the right
clutureinfo. You can go through any web site that gives you informtion on
localizing web pages in ASP.net. The below URL would be a good start for you

http://msdn2.microsoft.com/library/f...us,vs.80).aspx

cheers!!
pradeep_TP

"dale zhang" wrote:
Thanks, Pradeep. I agree that resource file is the right approach. Do you
know where I can find a good material to tell me how to do this?


"pradeep_TP " wrote:

> hi dale,
>
> I think redirecting to different language page is a bad idea uless you have
> a different style and content for different languages. The best idea would be
> to go for resource file for different languages and setting the cultureinfo
> for each language. I have done this for a very big project and i have started
> loving ASP.net ever since ;)
>
> cheers!!
> pradeep
>
> "dale zhang" wrote:
>
> > Hi,
> >
> > Anybody here has experience to build a english/chinese web?
> >
> > The chap 15 in Developing Web Applications tells sth about how to do this,
> > but I want to know more details.
> >
> > It seems detect and redirect are the way for me to do this. Does this mean I
> > have to have image button on the main page to link to chinese pages? all
> > chinese pages will duplicate english ones? the following is from the book,
> > how to get Request.UserLan guages[0]?
> >
> > Many thanks. -Dale
> >
> > private void Page_Load(objec t sender, System.EventArg s e)
> > {
> > // Get the user's preferred language.
> > string sLang = Request.UserLan guages[0];
> > // Get the first two characters of language.
> > sLang = sLang.Substring (0, 2);
> > // Redirect user based on his/her culture.
> > switch (sLang)
> > {
> > case "en":
> > // Use US site.
> > Response.Redire ct("http://www.contoso.com/usa");
> > break;
> > case "es":
> > // Use Spanish site.
> > Response.Redire ct("http://www.contoso.com/es");
> > break;
> > case "de":
> > // Use German site.
> > Response.Redire ct("http://www.contoso.com/de");
> > break;
> > case "zh":
> > // Use Chinese site.
> > Response.Redire ct("http://www.contoso.com/zh");
> > break;
> > default:
> > // Use US site.
> > Response.Redire ct("http://www.contoso.com/usa");
> > break;
> > }
> > }
> > }
> >

Nov 17 '05 #8
hi dale,

I am using visual studio 2003, with .net 1.1. Here is what I do to compile
the resource file. I use a bach file to compile the resource file. You can
paste the code below in a batch file for eg. res.bat and run the batch file
from the command prompt

PATH %WINDIR%\Micros oft.NET\Framewo rk\v1.1.4322;%P ATH%

resgen testrest.en-US.resx al
/embed:testrest. en-US.resources,te strest.en-US.resources
/out:testrest.re sources.dll /c:en-US

resgen is a utility which you can find under the folder where .net framework
is installed. You can read more about resgen utility by just typing resgen at
the command prompt.

cheers
pradeep_tp
"dale zhang" wrote:
Hi Pradeep,

Thanks for the link. It is really good. based on that, i tried to do this by:
1. go to a designer page
2. on the tools menu, click Generat Local Resource.

I looked around, could not find Generat Local Resource in 2003 VS.

Do I have to do this in 2005 VS?

Thanks. -Dale

"pradeep_TP " wrote:
hi dale,

When you think of multilingual in classic ASP context then it is a very
dauting task. But in ASP.net its just a matter of setting the right
clutureinfo. You can go through any web site that gives you informtion on
localizing web pages in ASP.net. The below URL would be a good start for you

http://msdn2.microsoft.com/library/f...us,vs.80).aspx

cheers!!
pradeep_TP

"dale zhang" wrote:
Thanks, Pradeep. I agree that resource file is the right approach. Do you
know where I can find a good material to tell me how to do this?


"pradeep_TP " wrote:

> hi dale,
>
> I think redirecting to different language page is a bad idea uless you have
> a different style and content for different languages. The best idea would be
> to go for resource file for different languages and setting the cultureinfo
> for each language. I have done this for a very big project and i have started
> loving ASP.net ever since ;)
>
> cheers!!
> pradeep
>
> "dale zhang" wrote:
>
> > Hi,
> >
> > Anybody here has experience to build a english/chinese web?
> >
> > The chap 15 in Developing Web Applications tells sth about how to do this,
> > but I want to know more details.
> >
> > It seems detect and redirect are the way for me to do this. Does this mean I
> > have to have image button on the main page to link to chinese pages? all
> > chinese pages will duplicate english ones? the following is from the book,
> > how to get Request.UserLan guages[0]?
> >
> > Many thanks. -Dale
> >
> > private void Page_Load(objec t sender, System.EventArg s e)
> > {
> > // Get the user's preferred language.
> > string sLang = Request.UserLan guages[0];
> > // Get the first two characters of language.
> > sLang = sLang.Substring (0, 2);
> > // Redirect user based on his/her culture.
> > switch (sLang)
> > {
> > case "en":
> > // Use US site.
> > Response.Redire ct("http://www.contoso.com/usa");
> > break;
> > case "es":
> > // Use Spanish site.
> > Response.Redire ct("http://www.contoso.com/es");
> > break;
> > case "de":
> > // Use German site.
> > Response.Redire ct("http://www.contoso.com/de");
> > break;
> > case "zh":
> > // Use Chinese site.
> > Response.Redire ct("http://www.contoso.com/zh");
> > break;
> > default:
> > // Use US site.
> > Response.Redire ct("http://www.contoso.com/usa");
> > break;
> > }
> > }
> > }
> >

Nov 17 '05 #9
Hi Pradeep,

Thank you for your support. I got them working. It is great. I start to love
..net now:-).

One more concern: I read MSDN about this topic. They said that automatic
pick up language from IE (ie. Request.UserLan guages[0]) may not be reliable.
We should always add button to allow users to manually select language. Is
this still true? I can see some people in china may have "zh" in IE, others
may have "zh-cn" in IE. So my code should handle those by setting my lang to
zh-cn and save it to a session variable if user select Chinese button
manually?
When I test default selection (ie. I do not string for "zh", but IE returns
"zh"), the code should go to default lang based on MSDN if I do not have the
selection. But my code returns error to complain I do not have string for
"zh". Is this right? If so, I need to enhance my code to handle the case.
Thanks. -Dale
"pradeep_TP " wrote:
hi dale,

I am using visual studio 2003, with .net 1.1. Here is what I do to compile
the resource file. I use a bach file to compile the resource file. You can
paste the code below in a batch file for eg. res.bat and run the batch file
from the command prompt

PATH %WINDIR%\Micros oft.NET\Framewo rk\v1.1.4322;%P ATH%

resgen testrest.en-US.resx al
/embed:testrest. en-US.resources,te strest.en-US.resources
/out:testrest.re sources.dll /c:en-US

resgen is a utility which you can find under the folder where .net framework
is installed. You can read more about resgen utility by just typing resgen at
the command prompt.

cheers
pradeep_tp
"dale zhang" wrote:
Hi Pradeep,

Thanks for the link. It is really good. based on that, i tried to do this by:
1. go to a designer page
2. on the tools menu, click Generat Local Resource.

I looked around, could not find Generat Local Resource in 2003 VS.

Do I have to do this in 2005 VS?

Thanks. -Dale

"pradeep_TP " wrote:
hi dale,

When you think of multilingual in classic ASP context then it is a very
dauting task. But in ASP.net its just a matter of setting the right
clutureinfo. You can go through any web site that gives you informtion on
localizing web pages in ASP.net. The below URL would be a good start for you

http://msdn2.microsoft.com/library/f...us,vs.80).aspx

cheers!!
pradeep_TP

"dale zhang" wrote:

> Thanks, Pradeep. I agree that resource file is the right approach. Do you
> know where I can find a good material to tell me how to do this?
>
>
>
>
> "pradeep_TP " wrote:
>
> > hi dale,
> >
> > I think redirecting to different language page is a bad idea uless you have
> > a different style and content for different languages. The best idea would be
> > to go for resource file for different languages and setting the cultureinfo
> > for each language. I have done this for a very big project and i have started
> > loving ASP.net ever since ;)
> >
> > cheers!!
> > pradeep
> >
> > "dale zhang" wrote:
> >
> > > Hi,
> > >
> > > Anybody here has experience to build a english/chinese web?
> > >
> > > The chap 15 in Developing Web Applications tells sth about how to do this,
> > > but I want to know more details.
> > >
> > > It seems detect and redirect are the way for me to do this. Does this mean I
> > > have to have image button on the main page to link to chinese pages? all
> > > chinese pages will duplicate english ones? the following is from the book,
> > > how to get Request.UserLan guages[0]?
> > >
> > > Many thanks. -Dale
> > >
> > > private void Page_Load(objec t sender, System.EventArg s e)
> > > {
> > > // Get the user's preferred language.
> > > string sLang = Request.UserLan guages[0];
> > > // Get the first two characters of language.
> > > sLang = sLang.Substring (0, 2);
> > > // Redirect user based on his/her culture.
> > > switch (sLang)
> > > {
> > > case "en":
> > > // Use US site.
> > > Response.Redire ct("http://www.contoso.com/usa");
> > > break;
> > > case "es":
> > > // Use Spanish site.
> > > Response.Redire ct("http://www.contoso.com/es");
> > > break;
> > > case "de":
> > > // Use German site.
> > > Response.Redire ct("http://www.contoso.com/de");
> > > break;
> > > case "zh":
> > > // Use Chinese site.
> > > Response.Redire ct("http://www.contoso.com/zh");
> > > break;
> > > default:
> > > // Use US site.
> > > Response.Redire ct("http://www.contoso.com/usa");
> > > break;
> > > }
> > > }
> > > }
> > >

Nov 17 '05 #10

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

Similar topics

2
4382
by: AIM | last post by:
Error in msvc in building inheritance.obj to build hello.pyd Hello, I am trying to build the boost 1.31.0 sample extension hello.cpp. I can not compile the file inheritance.cpp because the two files containing some templates: adjacency_list.hpp and mem_fn.hpp can not compile. Does anyone have any solutions?
10
3263
by: Amittai Aviram | last post by:
This XHTML 1.0 Strict page -- http://www.studiolirico.org/docs/settimana2003.html has a bilingual title in Italian and English. The principle language of the page is Italian, so the <html> tag looks like this (w/o the space in the xmlns URL): <html xmlns="h ttp://www.w3.org/1999/xhtml" xml:lang="it" lang="it"> Within the body, I have English translations for all Italian text, and these are always contained within elements that bear the...
30
3526
by: Gustaf Liljegren | last post by:
I'm working with some semi-advanced tables with lots of decimal numbers in, and I can't get the alignment to work. http://www.algonet.se/~gustafl/temp/output_ib.html I want numbers aligned to the decimal point. The HTML 4 spec says User agents doesn't need to support 'char' and 'charoff', so I wonder if the problem is lack of support? If so, can the same results be achieved in another way?
2
1353
by: Rog | last post by:
Hi, I have a bilingual report that should print amounts as 1,234.00 in the English(US) part --which is no problem-- and as 1.234,00 in the French part. My regional settings are US. How can I format the amounts in the European way? TIA, Rog
2
4786
by: Rudy Ray Moore | last post by:
How can I modify the project build order of a multi-project workspace under "Visual Studio .net 2003 7.1 c++"? I tried to modify the .sln by hand to influence the build order, but it didn't seem to help. It looks like it's in reverse alphabetical order with upper case characters winning. Contents from my "Output" window: Build started: Project: Utility Build started: Project: USMTF Build started: Project: Tracking
5
3309
by: will | last post by:
I have a php/mysql site and I am wondering if anyone has suggestions about strategies for making it bilingual or resources on how to do this. I thought of one way which would be to replace the text with calls to a database which has all the text in it. But I would prefer to have a single file with phrases and then just be able to translate that single file into another language to produce a site in another language. Any ideas would be...
0
2460
by: Akira Kitada | last post by:
Hi list, I was trying to build Python 2.6 on FreeBSD 4.11 and found it failed to build some of the modules. """ Failed to find the necessary bits to build these modules: _bsddb _sqlite3 _tkinter gdbm linuxaudiodev spwd sunaudiodev
0
1531
by: M.-A. Lemburg | last post by:
On 2008-10-25 08:39, Akira Kitada wrote: Please post a bug report on python.org about these failures. The multiprocessing module is still fairly new and obviously needs more fine tuning for the large set of platforms on which Python can run. However, please also note that FreeBSD4 is a rather old version of that OS. FWIW: Python 2.6 compiles just fine on FreeBSD6. Thanks.
0
1958
by: Akira Kitada | last post by:
Hi Marc-Andre, Thanks for the suggestion. I opened a ticket for this issue: http://bugs.python.org/issue4204 Now I understand the state of the multiprocessing module, but it's too bad to see math, mmap and readline modules, that worked fine before, cannot be built anymore.
0
9673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9522
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10443
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10216
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10002
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7543
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5565
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3728
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2921
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.