Thai Language Encoding with TIS-620

Hi All,
I have a file which has few Thai language words.I need to decode with TIS-620 charset.
I have tried with a standalone program.When I run the program and try to print the local lang program..it simply prints ??? in Eclipse console......When I try to print the Byte Array with the charset Name=TIS-620, it gives me..[B@7d772e  and when I try to print it after decode the array of bytes with given char set as ISO8859_1..it prints some garbage characters....��������
I am attaching the java code I have been trying and also the file which I am trying to read.
{code}import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStreamReader;
public class te {     
     private static final String ISO = "ISO8859_1";
     private static String charsetTobeChanged="TIS-620";
     public static void main(String args[]) throws Exception{
     BufferedReader brFile;
     String inFileName=null ;
     String inLine,inLine_BENE_NAME,decode_LL_BENE_NAME ;
     inLine_BENE_NAME="test";
     FileOutputStream fos2=new FileOutputStream("C:\\Documents and Settings\\Desktop\\asPerBaseFile.dat");
     DataOutputStream output = new DataOutputStream (fos2);
     final String NEXT_LINE = "\n";
     inFileName= "C:\\Documents and Settings\\D150911\\Desktop\\latestBaseFile.dat" ;
     String newStrLine,newDecodedBeneName;
     try{
          brFile = new BufferedReader(new InputStreamReader(new FileInputStream(inFileName), "UTF-8"));
          while ((inLine = brFile.readLine()) != null) {
               try{
                    inLine_BENE_NAME = getField(inLine, inLine.length(), 78, 128).trim();
                    if (inLine_BENE_NAME!=null && inLine_BENE_NAME.length()>0)
                                   decode_LL_BENE_NAME = decode(inLine_BENE_NAME.getBytes(charsetTobeChanged),ISO);
                                   newDecodedBeneName= fillSpace(decode_LL_BENE_NAME,50);
                                   newStrLine=inLine.substring(0, 78).concat(newDecodedBeneName).concat(inLine.substring(128));
                                   output.writeBytes(newStrLine);
                                   output.writeBytes(NEXT_LINE);
                    else
                         output.writeBytes(inLine);
               }//end try
               catch (Exception encodeE)
                              System.out.println(" exception in Encoding=="+encodeE);
          }//end while
     }//end of try
     catch(Exception e)
               System.out.println("File not found= or any other exception ==="+e);
     //getField
     public static String getField(String lineString, int lineLength, int startPos, int endPos) throws Exception {
          String outString;
          try {
               if (lineLength >= endPos) {
                    outString = lineString.substring(startPos, endPos);
               } else
                    if (lineLength >= startPos) {
                         outString = lineString.substring(startPos, lineLength);
                    } else {
                         outString = "";
               return(outString);
          catch (Exception ex) {
               throw ex;
     public static String decode(byte[] pvBytes, String pvTargetCodePage) throws Exception
     if(pvBytes == null)
     return "";
     return new String(pvBytes, pvTargetCodePage);
     public static String fillSpace(String field_value, int number_of_digit)
     String add_space = "";
     if (field_value.length() < number_of_digit) {
     for (int j=0; j<(number_of_digit - field_value.length()); j++) {
     add_space = add_space + " ";
     field_value = field_value + add_space;
     return field_value;
} // fillSpace
}//end class
And the file which I am trying to read is following..please copy and paste as a file...
000001 7441 7454797 2721001477 000000050030932 080429 0190014754              &#3612;&#3641;&#3657;&#3592;&#3633;&#3604;&#3585;&#3634;&#3619;&#3650;&#3619;&#3591;&#3648;&#3619;&#3637;&#3618;&#3609;&#3617;&#3633;&#3608;&#3618;&#3617;&#3623;&#3636;&#3592;&#3633;&#3618;&#3619;&#3632;&#3648;&#3610;&#3637;&#3618;&#3610;&#3648;&#3585;&#3603;&#3601;&#3660;&#3604;&#3657;&#3634;&#3609;&#3604;&#3639;&#3657;&#3629;&#3604;&#3639;&#3593;                            
000002 7441 7454797 1681016631 000000057153890 080429 0190014757              &#3624;&#3638;&#3585;&#3625;&#3634;&#3604;&#3639;&#3657;&#3629;&#3604;&#3639;&#3657;&#3629;&#3604;&#3639;&#3657;&#3629;&#3604;&#3639;&#3657;&#3629;&#3604;&#3639;&#3657;&#3629;&#3604;&#3639;&#3657;&#3629;&#3604;&#3639;&#3657;&#3629;&#3604;&#3639;&#3657;&#3629;&#3594;&#3656;&#3629;&#3591;&#3623;&#3636;&#3607;&#3618;&#3634;&#3594;&#3609;&#3593;&#3633;                                
000003 7441 7454797 4162503389 000000090107942 080429 0190014762              &#3612;&#3641;&#3657;&#3592;&#3633;&#3604;&#3585;&#3634;&#3619;&#3650;&#3619;&#3591;&#3648;&#3619;&#3637;&#3618;&#3609;&#3617;&#3633;&#3608;&#3618;&#3617;&#3623;&#3636;&#3592;&#3633;&#3618;&#3619;&#3632;&#3648;&#3610;&#3637;&#3618;&#3610;&#3648;&#3585;&#3603;&#3601;&#3660;&#3604;&#3657;&#3634;&#3609;&#3604;&#3639;&#3657;&#3629;&#3604;&#3639;&#3593;                           
000004 9100 7454797 0000000000 000000197292764 000000                                                                          
==============================================
The above line is just a seperator...It can be noticed in the given file above the 3rd last line after LL has a Thai word which needs to be encoded....
I mean ,I want to decode it with Char set TIS-620 so that when I open it in IE..Thai language can be viewed by Thai encoding.
Please help.
Edited by: InfoRequired on Jul 11, 2008 1:11 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Thank you for the help!.
True, I read the article you provided but it was a bit confusing if I read for the first time.
anyways, you summarised well.I tried with following,read the file,did string manipulation then simplay wrote to a file with require character encoding.
Preview:
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
public class forumHelp {     
     private static String  charsetTobeChanged="TIS-620";
     public static void main(String args[]) throws Exception{
     BufferedReader brFile;
     //OutputStreamWriter f1;
     String inFileName=null ;
     //String outFileName=null;
     String inLine,inLine_BENE_NAME;
     inLine_BENE_NAME="test";
     //ouput stream writer
     FileOutputStream fileOut = new FileOutputStream ("C:\\Documents and Settings\\Desktop\\forumHelp2.dat",true);
     OutputStreamWriter out1;
     out1 = new OutputStreamWriter (fileOut, charsetTobeChanged);
     out1.flush();
     final String NEXT_LINE = "\n";
     inFileName= "C:\\Documents and Settings\\Desktop\\latestBaseFile.dat" ;
     String newStrLine,newDecodedBeneName;
     try{
          brFile         = new BufferedReader(new InputStreamReader(new FileInputStream(inFileName), "UTF-8"));
          //f1         =new OutputStreamWriter(new FileOutputStream(outFileName), charsetTobeChanged);
          while ((inLine = brFile.readLine()) != null) {
               try{
                    inLine_BENE_NAME      = getField(inLine, inLine.length(),  78, 128).trim();
                    if (inLine_BENE_NAME!=null && inLine_BENE_NAME.length()>0)
                                   newDecodedBeneName= fillSpace(inLine_BENE_NAME,50);
                                   newStrLine=inLine.substring(0, 78).concat(newDecodedBeneName).concat(inLine.substring(128));
                                   out1.write(newStrLine);
                                   out1.write(NEXT_LINE);
                    else
                         out1.write(inLine);
               }//end try
               catch (Exception encodeE)
                              System.out.println(" exception in Encoding=="+encodeE);
          }//end while
     }//end of try
     catch(Exception e)
               System.out.println("File not found= or any other exception ==="+e);
     out1.close();     
     //getField
     public static String getField(String lineString, int lineLength, int startPos, int endPos) throws Exception {
          String outString;
          try {
               if (lineLength >= endPos) {
                    outString = lineString.substring(startPos, endPos);
               } else
                    if (lineLength >= startPos) {
                         outString = lineString.substring(startPos, lineLength);
                    } else {
                         outString = "";
               return(outString);
          catch (Exception ex) {
               throw ex;
     public static String fillSpace(String field_value, int number_of_digit)
                    String add_space = "";
                  if (field_value.length() < number_of_digit) {
                          for (int j=0; j<(number_of_digit - field_value.length()); j++) {
                                  add_space = add_space + " ";
                  field_value = field_value + add_space;
                  return field_value;
     }  // fillSpace
}//end classThank you all again!

Similar Messages

  • Thai Language problem with informix ODBC

    I have a problem about crystal report connected informix database.
    It displays Thai language incorrectly such as ºÃÔÉÑ· ˹Öè§ÈÙ¹Âì˹Öè§.
    Informix ODBC version is IBM Informix 3.82 32 BIT and crystal report version 11.
    Please help me to solve this problem.
    Thank you

    Please re-post if this is still an issue to the Data Connectivity - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • Thai language Problem with Labelshop start (External design program)

    Hi all,
    In my project, we have designed form vai Labelshop start and then import it to SAPscript.
    Now we're facing the problem about Thai language when we test running. Thai language in ASCII format is not correct.
    Anyone please advice the possible solution for this problem. If this problem is about font in Labelshop start program, please advice how to import new font to Labelshop.
    Thank you very much,
    Anek.

    DiskStudio - Create or remove a partition without reformatting your hard drive.
    http://www.micromat.com/index.php?option=content&task=view&id=33
    With DiskStudio you can:
    * Add new partitions to your hard drive.
    * Delete partitions previously created by Apple's Disk Utility or DiskStudio.
    * Erase and reformat existing partitions in a number of standard formats.
    * Completely erase and repartition an entire hard disk.
    Use DiskStudio to:
    * Install a new copy of Mac OS X, but keep your original copy intact.
    * Install a completely different operating system, such as Mac OS 9, on a new partition.
    * Create a partition to hold special projects, such as audio or video files.
    * Create a partition to hold scratch space for programs such as Adobe Photoshop.
    When a hard drive is first set up for use, it is partitioned into one or more logical volumes. These appear on your desktop as though they were separate drives. Using the standard disk tools that come with the Macintosh, there is no way to change this partitioning scheme without completely erasing the entire drive and starting over. With DiskStudio, this is no longer necessary.
    DiskStudio provides the tools you need to control how information is stored on your hard drive. An easy to use, non-destructive disk partitioner has been requested by more of our customers than any other type of utility. DiskStudio fills this important need for Mac OS X. With DiskStudio you will be able to quickly and easily change the way information is stored on your hard drives as your needs change over time.
    System Requirements:
    * PowerPC G3 or better. (Beige G3 machines not supported)
    * Mac OS X 10.3 or greater.
    * CD-ROM or DVD-ROM.
    * 256 Megabytes RAM or higher.
    Cost is $50.
    Check this site for battery part numbers and sources. Mac PRAM, NVRAM, CUDA/PMU & Battery Tutorial
    Cheers, Tom

  • Thai mail subject is =?TIS-620?Q?=E0=A2=D2=BE=A1=E1=BB=C3?=

    Hello,
    I am using Java Mail API to read email from IMAP server. In case the subject of the email sent contains thai characters, the subject received through Java Mail API is =?TIS-620?Q?=E0=A2=D2=BE=A1=E1=BB=C3?=. Which encoding is this? How do I get the actual subject from this encoding?
    Waiting for replies,
    Ankit

    Hi,
    This is actually a 'quoted-printable' string with TIS-620 as the charset. But fortunately there is a way to handle all this , even without going into these details. Use decode(String s)in javax.mail.util (not too sure about the package name). Pass the string and you will get the proper string prvided your env has support for TIS-620 charset.
    cheers
    Projyal

  • Does UTF-8 encoding support Thai language in Endeca Search?

    Hi,
    We have a requirement to configure Endeca search in Thai language. Does UTF-8 encoding on all the configuration files and for incoming data (Record Adapter) create issues with Thai character set? If yes, then please let us know which type of encoding will fix the issue? I am using the Endeca 6.4.0 for search configuration.

    Hi
    You should use the OLT analyzer as the Latin-1 analyzer doesn't support all the character codes used by the Thai language. Some words do not use these unsupported character codes, but many words will (any that contain tone marks), and searches for these will not return the correct results. Also the Thai language doesn't use whitespace segmentation so multi-term searches will not work correctly. Finally for ongoing support your best bet would be to use the officially recommended analyzer for this language, which is the OLT one.
    In terms of the unavailability of certain features, is there any one of those features that you require? Note diacritic folding is (I believe) scheduled to be added in the next release, however this shouldn't be required in Thai to the best of my knowledge as the diacritics are integral to the language. If you need one or more of the other features then I'd recommend raising an SR as the more customers require this for OLT analyzer languages the greater the likelihood that support will be added for this.
    Thanks
    Michael

  • Re: Encode THAI Language into BASE64 Format

    Hi  Guru's,
            Have a requirement  to encode particular IDOC text fields which are in  THAI language to BASE64 format . We are able to encode the same for english but not able to do the same for Thai language so can any one help with the coding to create custom UDF  which can convert.
    Regards
    Sathish Kumar K.C

    Hi ,
       Please find below my code...
    public class Base64a {
    //     Mapping table from 6-bit nibbles to Base64 characters.
    private static char[]    map1 = new char[64];
         static {
            int i=0;
            for (char c='A'; c<='Z'; c+) map1[i+] = c;
            for (char c='a'; c<='z'; c+) map1[i+] = c;
            for (char c='0'; c<='9'; c+) map1[i+] = c;
            map1[i+] = ''; map1[i++] = '/'; }
    //     Mapping table from Base64 characters to 6-bit nibbles.
    private static byte[]    map2 = new byte[128];
         static {
            for (int i=0; i<map2.length; i++) map2<i> = -1;
            for (int i=0; i<64; i++) map2[map1<i>] = (byte)i; }
    Encodes a string into Base64 format.
    No blanks or line breaks are inserted.
    @param s  a String to be encoded.
    @return   A String with the Base64 encoded data.
    public static String encode (String s) {
         return new String(encode(s.getBytes())); }
    Encodes a byte array into Base64 format.
    No blanks or line breaks are inserted.
    @param in  an array containing the data bytes to be encoded.
    @return    A character array with the Base64 encoded data.
    public static char[] encode (byte[] in) {
         int iLen = in.length;
         int oDataLen = (iLen*4+2)/3;       // output length without padding
         int oLen = ((iLen+2)/3)*4;         // output length including padding
         char[] out = new char[oLen];
         int ip = 0;
         int op = 0;
         while (ip < iLen) {
            int i0 = in[ip++] & 0xff;
            int i1 = ip < iLen ? in[ip++] & 0xff : 0;
            int i2 = ip < iLen ? in[ip++] & 0xff : 0;
            int o0 = i0 >>> 2;
            int o1 = ((i0 &   3) << 4) | (i1 >>> 4);
            int o2 = ((i1 & 0xf) << 2) | (i2 >>> 6);
            int o3 = i2 & 0x3F;
            out[op++] = map1[o0];
            out[op++] = map1[o1];
            out[op] = op < oDataLen ? map1[o2] : '='; op++;
            out[op] = op < oDataLen ? map1[o3] : '='; op++; }
         return out; }
    Regards
    Sathish Kumar

  • I live in thailand. my firefox homepage comes up with a google mark and is in thai language. how do i remove the google link and get english language?

    I live in thailand. I just downloaded firefox 3.6.12. I have uninstalled google chrome. My firefox homepage comes up with a google mark and is in thai language. How do i remove the google link and get english language?

    You can set the Interface Language via the Search settings link on the http://www.google.com/ncr site. That should work for the Google Firefox page as well.<br />
    That setting is stored in a Google PREF cookie that you need to keep (allow).

  • Issue with Thai language font

    I am using Indesign CS5 server and my programming language is VB.NET.
    I had tried with Tahoma font for THAI language and there were problems with the text even after setting Kerning value to Metrics.
    Please see my requirement in the image below. I would require something like the one given in second part of the image. I had used Courier Thai in this case.
    Does anyone have any idea which font suits good for Thai language...
    Please suggest if there is any Verdana font for Thai language.
    Thanks in advance..!!

    Hi,
    Thanks for earlier replies.
    The earlier problem in displaying vowels got resolved.
    We found another issue when applying Adobe World Ready Composer for Tahoma font. Now the Numeric digits are getting displayed in Thai language as given in the image below.
    The text which we got:
    When we remove the composer we get the text as given below. But the other special characters (vowels) displayed are incorrect.
    Please suggest if there is any solution for this problem.

  • If I buy mac book air in USA then can I use it in Thailand with Thai language?

    If I buy mac book air in USA then can I use it in Thailand with Thai language?

    joe visava wrote:
    Do I need to add some software and hardware for using Thai language?
    No.  Read the language part of the tech specs. 
    http://www.apple.com/osx/specs/
    If you need to have Thai printed on the keys, that is something you would have to contact stores directly yourself to find out if that is possible.  Nobody in these forums represents Apple or any store.

  • Problem with enabling thai language in forms

    Hi all,
    I am using
    forms6i,
    oracle10g db(client/server environment),
    NLS_LANG is:thai_thailand.th8tisascii,
    our font standard is:ARIAL
    when i give an i/p via forms the typed value is showing as junk characters.if i change the font for the particular form's field from arial to ms sans serif it is working fine ,but our font standard is arial .plz help me to enabling thai language in forms .and also plz suggest me whether arial font does support to thai language or not .
    Thanks in advance
    Thanks
    Jebesh

    Hi,
    Welcome to OTN forms
    For example:
    select * from a, b where a.no=b.no(+)
    select * from a, b where a.no left outer join b.no
    Thank you

  • Does Adove FrameMaker 7.0 support Thai language?

    Hello,
    after creating a sample document with some Thai text, I save it as MIF 7.0 . There is a prompt saying that saving in this format will cause loss of information related to new features. Then, after reopening the file in FrameMaker instead of Thai characters i get question marks.
    I'm using Adobe FrameMaker v10 , Thai Kedmanee keyboards, my text is written using font that supports Thai characters (Angsana New) .
    So, ladies and gentlemen - is there anything i can do with this or FrameMaker 7.0 just does not support Thai language?
    Thanks in advance,
    Chris

    Your Angsana New is likely a Unicode font. When you type Thai characters in it, what goes into the document is 3-byte UTF8 from the U+0E00 codepoint block. These are completely different binary values vs. the 8-bit code page 874 legacy encoding for Thai overlay fonts, and may not even have the same ordering of glyphs in the block.
    You're going to need a legacy 8-bit Thai font, possibly Angsana code page 874, and you'll need to know the mapping. On Windows, you'll might even have to type them as Alt sequences, based on the {128-255 decimal?) values of the code points. Alternatively, Windows will have a keyboard mapping for code page 874.
    ISO/IEC 8859-11:2001, code page 874 is apparently not the same as TIS-620, if that matters.
    Now entering the Unicode parking lot.
    Do not back up.
    Severe text damage may result.

  • Could anyone help me test about 'Thai' language support

    Hi, I would like to ask anyone who owned new iPod touch to help me test if its support Thai language for web browsing and audio files.
    Please open this website / play this audio files and take some photos for me.
    http://manager.co.th (this page should all in Thai)
    http://zickr.com (also in Thai, but with utf-8 encoding)
    http://download.yousendit.com/108FB2EB0D2E6427 (this m4a file contains Thai song title, I would like to check if its display in new touch correctly)
    Thanks a lot!

    To leave your comments and feedback for suture enhancements to the ipod touch it is best to leave your feedback at the link below.
    http://www.apple.com/feedback/ipod.html
    That link is where apple will read your comments.
    GFF

  • Language:  Filename with characters for arabic turns question mark

    Language: Filename with characters for arabic turns question mark
    OS: Solaris 9
    Machine: Sun-Fire 25K
    There is an adobe distiller software that is configured and a java apps. There are postscript files that are being converted to .pdf format using the adobe distiller. Using the GUI (using the Exceed; for remote access), when they use GUI to convert the postscripts to pdf files, the long filenames have the corresponding characters for arabic reading purpose. This is OK.
    When we use the windows RUN to telnet the server and convert the postscripts to pdf, it gives a question marks characters in the filenames ( this; is a sample; filename; ?? ??? ??; right.pdf )
    We are not sure now if we have to add a package of arabic or a patch to resolve this problem.
    Message was edited by:
    yurioira32
    Message was edited by:
    yurioira32

    Solution found, I'll post the work around to those who might encounter the same problem.
    Somewhere in the layers of technology (webwork or weblogic I'd guess), the servlet response is encoded into UTF-8 regardless. The encoding in the database was ISO-8859-1. Sending ISO encoded bytes by UTF-8 caused the conflicting character codes (anything above 127) to show up as undefined.
    The fix is to decode the input byte array into ISO-8859 string, then encode that string into UTF-8, which can be send by Weblogic.
    isoConvert = new String(buf, "ISO-8859-1");
    out.write(isoConvert.getBytes("UTF-8"), 0, isoConvert.getBytes("UTF-8").length);

  • Which Language version of Indesign CC supports Thai language?

    Greetings,
    I'm trying to troubleshoot floating vowel characters in our selected font (Sukhumvit) in Indesign CC, and can't find which version I should be using to be able to mark my text as thai language. I can of course download any version, but right now am in the English/arabic version.
    The troubleshooting involves what can and can't be done in terms of tracking and kerning, and I'm helping to author guidelines for Thai usage for this font for global use.
    I'm running a Mac Pro (not the cool new one, yet) Mavericks 10.9.1 and using the most recent update for Indesign
    Please help?
    Thanks
    Mo

    I thought that Sukhumvit was a Mac system font, but I was of course completely wrong. Turns out it's an iOS system font, so I couldn't do any testing at all. I assume that you purchased the font directly from Cadson Demak, and I'd take my questions directly to them. It's probably a font build issue.
    If I were using a font where I knew the foundry wouldn't listen to my concerns, I might write a fistful of GREP styles that would remove tracking from the floating vowels. Or I might use Peter Kahrel's kerning table script. It's brilliant.
    But the most important bit is this: I would also write my style guide so that tracking wasn't indiscriminately applied to all writing systems. That strikes me as a no-brainer. Perhaps your default Latin-script font needs some brathing room at body text sizes in the language(s) you read, and the easiest way to get said breathing room in your workflow is to use tracking instead of a different font or careful kerning. but once again I'd rather use the kerning table script than just track everything willy-nilly.
    That being said, It's likely that I'll have to recommend that no tracking or kerning be used with this language. Our creatives won't like that at all, as they like to be able to control every facet.
    If your creatives can't read Thai then they should absolutely have that control taken away from them. I'm a localization wonk, not a "creative" so perhaps I'm judging a bit harshly, but if they want to "control every facet" then they'd best understand exactly how Thai is supposed to look - an understanding best achieved by literacy.

  • My playbook don't have thai keyboard and thai language.

    please update thai language and thai keyboard to my playbook. i'm so sad and unhappy. many people in thailand wating for you.please update thai language now. thank you.
    Solved!
    Go to Solution.

    None of the languages seem to work at this point, they just change the name on the enter button. With keyboard space at a premium having a language change button on the main board seems quite silly. IMO it should be put in options/language. And on a side note I would really like to see the apostrophe on the main board... I find myself not using conjunctives just so I do not have to go to the symbol screen.
    I really hope the feb update fixes some of this, I know the keyboard has been updated

Maybe you are looking for

  • Invoice Discount In Oracle Receivable

    Hi, Any one knows how can i deduct invoice discount in oracle receivable. If any one knows please let me know. Regards, Yasir

  • 8520: problem to update OS 5

    Hello No possible to move my 8520 to OS5 Desktop offers me only OS4-6 or older version the same when I try updating online thank you for any help or tutoriel or information

  • Question on best version of CUPC to use with CUPS 7.0(8)

    Hello I just loaded CUPS version 7.0(8) and was not sure of the best version of CUPC to use on the client/ I saw there is a engineering release for CUPC 7.1.1a but I can find the reedme they mention that talks about specific fixes in that version. I

  • Usb Sound Card Surround

    Greetings, Not to long ago i got a Sound Blaster Live! 24bit external usb and tried to make it work with linux. The gentoo wiki for this card worked, however because it is a usb card, the front speakears are the only ones that are working. Since I ha

  • Wireless security for iPad Air in the UK

    I need to secure my iPad Air while using Hot Spots in the UK.  I have seen downloads for VPN but not sure of how they would work while traveling.  any advise would be greatly appreciated.