Search the web
Sign In
New User? Sign Up
i18n-prog · Discussion of Internationalization programming issues (i18n)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1386 - 1415 of 2073   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1386
_____ From: Dr. International [mailto:drintl@...] Sent: Monday, January 05, 2004 7:18 PM To: Suzanne M. Topping Subject: Last Chance to Save $250 on...
Suzanne M. Topping
stopping9
Offline Send Email
Jan 6, 2004
4:33 pm
1387
hi friends, i am doing on project and in that i have one problem, in that i m trying to find file in dir up this is ok but i m unable to find file in...
unknownforu2
Offline Send Email
Jan 7, 2004
2:35 pm
1388
I think you can find C source code that does what you want at http://www.codeproject.com/ If you want advice on your existing code, then you need to say a bit ...
Tex Texin
textexin
Offline Send Email
Jan 8, 2004
4:38 am
1389
Unicode in Government: Building a Multilingual Infrastructure http://www.unicode.org/iuc/iuc25 Washington D.C., USA March 31 - April 2, 2004 ...
Tex Texin
textexin
Offline Send Email
Jan 8, 2004
6:22 am
1390
Greetings gurus of text encoding! I don't know how many of you are yet using .NET, but the Unicode text handling has got to be a boon to people interested in ...
kellycoinguy
Online Now Send Email
Jan 9, 2004
7:47 pm
1391
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/ frlrfsystemiostreamreaderclassctortopic4.asp Use the StreamReader and Writer...
Addison Phillips [wM]
apphillips2000
Online Now Send Email
Jan 9, 2004
8:07 pm
1392
Is this the one to which you were referring? //Get a new StreamReader in ASCII format from a file StreamReader srAsciiFromFile = new...
Kelly Anderson
kellycoinguy
Online Now Send Email
Jan 11, 2004
11:47 pm
1393
hi guys any1 can help me working with unicode in vb. i have a oracle9i db for which i have to design an interface which have to be unicode compitable. like...
Romeo007
rome0oo7
Offline Send Email
Jan 12, 2004
2:45 pm
1394
Hi Kelly, That's the constructor for the StreamReader, but not the constructor for the encoding. I wouldn't pass the ASCII encoding, since that is the 7-bit...
Addison Phillips [wM]
apphillips2000
Online Now Send Email
Jan 12, 2004
4:40 pm
1395
Kelly, you can find your way to several vendor's pages that describe their code pages (or character set encodings), and graphic charts of the encodings, here: ...
Tex Texin
textexin
Offline Send Email
Jan 12, 2004
8:37 pm
1396
Hi, Database: Oracle 9i Looking for help to display language for a particular session. I have a database (multilingual) and need to display the server messages...
siraj131
Offline Send Email
Jan 13, 2004
5:17 pm
1397
Hi Can some one send me the code to insert Japanese data retrieved from a JSP page having shift-jis charset into an UTF-8 oracle database I am interested in...
Nitin Puthalath
nitin_np
Offline Send Email
Jan 13, 2004
5:17 pm
1398
Hi Nitin, I think you have an invalid assumption in your question. Java String objects are always encoded using Unicode. Although your JSP page may use...
Addison Phillips [wM]
apphillips2000
Online Now Send Email
Jan 13, 2004
5:58 pm
1399
In your JSP, you need to physically retrieve the form data as a sequence of bytes and build the Unicode string... Typical JSP code would be... String...
Stephen Holmes
i18ndoctor
Offline Send Email
Jan 13, 2004
10:30 pm
1400
From: <i18n-prog@yahoogroups.com> ... I'd love to be able to point to some easy solution, but the sad truth is that there is not one. See Chapter 6 of my book...
Michael (michka) Kaplan
v_michka2000
Offline Send Email
Jan 14, 2004
12:51 am
1401
Hi, We have tried implementing i18n for the product using java ResourceBundle, but its inability to write back the ResourceBundle made us to choose the...
Sivaji Adurthy
adurthy
Offline Send Email
Jan 14, 2004
2:30 pm
1402
Sivaji - What do you mean when you say that you can't write back the ResourceBundle? If you use a text .properties file rather than a class, you can write to...
Keith Bennett
krbennettmd
Offline Send Email
Jan 14, 2004
3:29 pm
1403
Oracle and Java each have their strengths and weaknesses; depending on your application, you may want to do collation using Oracle but handle UI (with static...
David Gallardo
bromo_man
Offline Send Email
Jan 14, 2004
8:05 pm
1404
Here is the code. language = new String("en"); country = new String("US"); Locale currentLocale; currentLocale = new Locale(language, country); ...
Sivaji Adurthy
adurthy
Offline Send Email
Jan 14, 2004
8:35 pm
1405
To dynamically reload resourcebundles, you need to override the default classloader with your own. This is frequently done by Java developers to improve...
Stephen Holmes
i18ndoctor
Offline Send Email
Jan 14, 2004
9:41 pm
1406
More importantly, it's not appropriate to store dynamic information in a ResourceBundle. That's what databases are for. @D...
David Gallardo
bromo_man
Offline Send Email
Jan 14, 2004
9:52 pm
1407
True, true!...
Stephen Holmes
i18ndoctor
Offline Send Email
Jan 14, 2004
10:02 pm
1408
Hi, I'm looking for a fairly complete list of all (or popular) fonts ("faces" to be more correct) available on Windows 2000. For each font, I would like to...
kurosaka
Online Now Send Email
Jan 15, 2004
6:29 pm
1409
Hi, I have a couple of questions in I18N 1) How can I input Japanese Chars in Text fields of the forms. 2) How to prepare resource Bundles for diff languages...
Sivaji Adurthy
adurthy
Offline Send Email
Jan 15, 2004
8:18 pm
1410
You need to use an Input Method Editor (IME). If you're running a native Japanese OS, then it's installed and you can activate it in the keyboard settings by...
Stephen Holmes
i18ndoctor
Offline Send Email
Jan 15, 2004
8:43 pm
1411
... forms ... This is incorrect. Windows 2000 has all of the IMEs on the CD, even for the English version. And Sivaji did specifically mention Windows 2000. ...
Michael (michka) Kaplan
v_michka2000
Offline Send Email
Jan 16, 2004
6:53 pm
1412
Michael, If you check the Microsoft site you will see that IME's to which I refer were released after Windows 2000 was made available. I know the Japaense...
Stephen Holmes
i18ndoctor
Offline Send Email
Jan 16, 2004
10:03 pm
1413
... He was asking only for a way to input Japanese, as did you. You did not mention any cooler IME that is specifically available for Win2000. And certainly...
Michael (michka) Kaplan
v_michka2000
Offline Send Email
Jan 17, 2004
3:01 pm
1414
Damn - I hate not being cool! But right you are!!!...
Stephen Holmes
i18ndoctor
Offline Send Email
Jan 17, 2004
3:26 pm
1415
Hi, We have a very good and urgent opening for one of our MNC client based in bangalore. Post: Network Engineer Mandatory skill set · Engineering...
Jobs - Yahoo - Shiksh...
shikshaplanet1
Offline Send Email
Jan 18, 2004
6:50 pm
Messages 1386 - 1415 of 2073   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help