How to read Chinese language in vb6.0

Hi,
I have ini file with chinese characters how to read and display in vb6.

Hi,
 This forum is for VB.NET. If you have a question about VB6 then you should use one of the forums that still support VB6. Below is some links to 2 of them.
http://vbcity.com/forums/26.aspx
http://www.vbforums.com/forumdisplay.php?1-Visual-Basic-6-and-Earlier

Similar Messages

  • HT201301 how about the Chinese language doc. Able to use with the My Lyric Book program?

    how about the Chinese language doc. Able to use with the My Lyric Book program?

    I'm not sure where you see that the links I gave suggested that. The iPhoto link (quoted below) in step 4 suggests dragging the library to the new location. You can do that in Finder by dragging the library to the external disk in the Finder sidebar. If you don't have a sidebar in Finder, go to the Finder View menu and click Show Sidebar. If the external disk isn't visible in the sidebar, go to the Finder Preferences, click Sidebar at the top of the Preferences window, and put a checkmark in front of External disks in the Devices section.
    You can move your entire iPhoto library to a different computer, a hard disk, or another location on your computer.
    Important:    Before you move your iPhoto library, it’s a good idea to back it up to a DVD or external hard disk.
    Move your iPhoto library
    If you’ve created multiple photo libraries, be sure to move only the library currently displayed when iPhoto is open. To move a different library, you first need to switch to it.
    Quit iPhoto.
    In the Finder, choose your home folder (it’s usually named after you).
    Open the Pictures folder (in the home folder) to locate the iPhoto Library file.
    Drag the iPhoto Library file to a new location on your computer.
    Open iPhoto.
    In the window that appears, select the library you want, and then click Choose.

  • How to read Thai language on blackberry 8530 browser?

    How to read Thai language on blackberry 8530 browser?  Does the phone support multi language?
    if so , how can we install Thai font or Thai languages.
    thank a lot ,

    Hiya!
     The phone itself isnt what would provide it. Its the software, you would have to have a mulit-language or all-language OS version on your device and you can then install the languages via the Desktop Software.
    You can go to this website and download a compatable OS version
    http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    Regardless, try checking this out http://www.blackberry.com/btsc/KB17208
    1). Please thank those who help you by clicking the beside the 'Reply' button.
    2). If your issue has been solved, please resolve it by marking "Accept as Solution" on the correct post!
    3). Remember to have fun! We are all in this together!
    4). Follow me on

  • MAC Users: how to get Chinese language input for my Bold 9700

    Hey everyone, I have a Bold 9700 from AT&T and I need to get Chinese input to work.  But all of your solutions are for PC users, and I have a Mac.  I am using the latest desk top manager.  I can get read Chinese but can't input.  there is no option for Chinese input in the application loader.  HELP!  Thanks

    Same here,
    I have a bold 9700 with t mobile USA and a macbook pro
    how can i install chinese language input? HELP !!!
    (apparently it has to do with the desktop manager, no? but the mac version is very basic)
    thanks for the help !

  • How to read chinese in N97 Mini?

    I just bought it in the UK
    How can it read chinese in texting and web browsing?
    Any software can be installed to solve?

    Language support on Nokia phones is a bit of an embarrassment, to be honest. It's pretty hopeless.
    As an end user there's nothing you can do yourself. What you can do is take the phone to your nearest Nokia Care Point and ask them to install a Chinese language pack for you. This will give the phone support for Chinese ideograms, both for display and for input. However, please bear in mind that:
    1) Not all NCPs will do this for you. Some will claim that it's impossible, and indeed it may well be impossible if you got your phone from an operator rather than SIM-free from an independent retailer or direct from Nokia.
    2) You may well be charged for this. The absence of Chinese language support in a phone intended for the UK market is not a fault in the phone, so the warranty cannot be invoked.
    3) If you update the firmware at a later date, the chances are that this will wipe out the language pack that was installed and you'll have to have it installed again.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • How to display Chinese language?

    There is a plan text file: article.txt, this file includes an Chinese article (Chinese Language).
    The web server is English system.
    Now I use a jsp file to display the content of this file, I use BufferedReader class to read the content of the file, then display it.
    I use contentType="text/html;charset=gb2312" also, but it cannot display Chinese Character correctly.
    Can anyone tell me how to display it?

    Hi i am having the same problem....how did you do it...can please help me
    <pre>
    <%@ page import="java.util.*,java.io.*,java.text.*,java.sql.* " %>
    <%@ page language="java" contentType="text/html; charset=UTF-8" %>
    <% response.setContentType("text/html; charset=UTF-8"); %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
    <title>
    </title>     
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />     
    <meta name="Generator" content="TextPad 4.0" />
    <meta name="Author" content="" />     
    <meta name="Keywords" content="" />     
    <meta name="Description" content="" />
    </head>
    <body bgcolor="#ffffff" background="" text="#000000" link="#ff0000" vlink="#800000" alink="#ff00ff">
    <%
    request.setCharacterEncoding("UTF-8");
    String str1 = "\u7528\u6237\u540d";
    String name = request.getParameter("name");
    if(name != null) {     
    // instead of setCharacterEncoding...     
    name = new String(name.getBytes("ISO8859_1"), "UTF-8");
    System.out.println(application.getRealPath("/"));
    System.out.println(application.getRealPath("/src"));
    %>
    req enc: <%= request.getCharacterEncoding() %>
    rsp enc: <%= response.getCharacterEncoding() %>
    str1: <%= str1 %>
    name: <%= name %>
    <%
    BufferedReader in = null;
    ArrayList str = new ArrayList(100);
    try {  
         in = new BufferedReader(new InputStreamReader( new FileInputStream("c:/Chinadescription\\coldtofu.txt"),"UTF-8"));
         String line;
         while ((line = in.readLine()) != null) {   
         line = line.trim(); //
         if (line.equals("[stop]"))
         break;
         str.add(line);
         finally {
         if (in != null) {  
         try {    
         in.close();
         catch (Exception e) {}
         for (int i = 0 ; i < str.size(); i++) out.println(str.get(i));
    %>
    <form method="GET" action="testcharacter.jsp" encoding="UTF-8">
    Name: <input type="text" name="name" value="" >
    <input type="submit" name="submit" value="Submit" />
    </form>
    </body>
    </html>
    </pre>

  • ASK : How to install Chinese language to my Curve 9300

    i use curve 9300, and i there is no chinese language, korean, or japanese, i readed more than ten threads which are discussing the problem, many of them said use the blackberry desktop software, but when i try, there no such option like adding language to device, i've download a lot of desktop software, but different version, but when i open it, i just the same, hope someone know how to help me ..

    Hello,
    There must be already some value in zcsa/installed_languages in your instance profile.
    Now in SMLT check the language information for checking the relevant value for chinese language and add this value to the parameter : zcsa/installed_languages
    Regards,
    Siddhesh

  • How to read chinese text in Quickoffice

    I wish to know if there is any plugin that allows me to read chinese text (preferably in UTF-8 or UTF-16 encoding) in Quickoffice.
    There also don't seemed to be a free ebook reader that supports both english and chinese encoding.
    Anyway knows anything at all, please help. Thanks

    Use Read_text function module.
    you need to pass
    ID
    LANGUAGE
    NAME
    OBJECT   to the function moduel
    To find the Text id name language and object these are the following steps. Example: FB02
    1. goto FB02, Enter Document number
    2. from menuselect Goto>Header-->header Text..... New window will be displayed 
    3. select the Header Text. here you can see all the text. 
    4. click on the TEXT (which you want to know the Text id) , then press log ICON (you can find in bottom right of the text window) it looks like a rolled paper. 
    5. in the Next window you will find Text Name. Text ID, Language. etc...
    Regards,
    Lalit Mohan Gupta.

  • How to read Chinese Characters in iTunes?

    Hi all,
    Is there anyone who can enlighten me on how I can read chinese characters in iTunes? I have quite a number of Chinese songs that I wish to be played in iTunes, but I noticed that it does not read the chinese song titles and had small rectangles in place of the chinese characters.
    I tried using a third-party software lke NJStar, but the chinese characters resulted were crammed together and were not legible.
    Please help. Thanks.

    now instead of small
    little squares, there are funny symbols and letters
    that don't make any sense whenever there are
    supposedly chinese characters.
    That probably means that the id3 tags on your songs are not encoded correctly. I understand that the program ConvertZ can help fix this.

  • HOW TO READ CHINESE IN N93I??

    I BOUGHT MY N93I YEAR AGO...IT CAN'T SEE ANY CHINESE IN IT..WAT I CAN DO??PLEASE

    First of all, you can STOP SHOUTING AT EVERYONE.
    Second, you can take the phone to a Nokia Care Point and ask them to install a Chinese language pack for you.
    Note that the absence of a language on a phone is not a fault in the phone because the phone was designed for use in an area where that language is not used. There may therefore be a charge for installing the language pack regardless of any warranty. Also, language packes installed independently of the firmware don't usually survive a reformat or a firmware update. So, if you reformat your phone or update its firmware, you'll have to have the language pack installed again.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • How to install chinese language in sap ecc 6.0 unicode system

    Hi,
        I want to install chinese language in my sap ecc 6.0 unicode system,where i would get chinese language in maraketplace.
    guide me for the same where i have to get chinese language,how to install in sap.
    Thanku

    Hello,
    There must be already some value in zcsa/installed_languages in your instance profile.
    Now in SMLT check the language information for checking the relevant value for chinese language and add this value to the parameter : zcsa/installed_languages
    Regards,
    Siddhesh

  • How to install Chinese language in to 8800 sapphir...

    I recently just received a 8800 Saphire Arte as a gift. But it cannot type Chinese, it can read Chinese but cannot type. is there any program i can install to solve this problem for me?
    Thanks so much for helping 3

    There are no programs that you can install to enable Chinese input but a nokia care point can add the language to the phone for you.
    Care points/service centres and repair info:
    UK • Europe • Asia-Pacific • USA •
    Canada • Middle East and Africa
    Elsewhere: Click here, select your country, go to the support section, then select repair.

  • N78: How to install Chinese language?

    My phone comes with chinese language input when I bought it. After I updated it using Nokia Software Updater, the option of the former chinese language input has gone. I checked my phone and found that the chinese input had changed to Taiwan version. I'm from Malaysia and I'm having problem using the Taiwanese Chinese language input. Help me, please. Thanks!!

    It seems that somebody flashed your phone. Anyway, the only official way to get a language pack into your phone is to go to a Nokia care center.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • How to download chinese language to nokia 113?

    Any way to download Chinese language to Nokia 113?
    Solved!
    Go to Solution.

    Those models that are sold in China and countries that uses Chinese as a primary language

  • How to read Chinese word from a TXT file

    File.OpenText() read a TXT File with  Chinese word in   ;but it not show right.
    exam:The TXT File include :中国
     this.Txt1.Text=ofd.File.OpenText().ReadToEnd();
    but it show :��ʹ�ݼƻ��
    How to solve it

    What encoding does the text file use?  Unlike .NET, Silverlight only supports UTF-8 and UTF-16.  File.OpenText() uses UTF-8 by default.
    If the text file is in some other encoding, you can create your own encoding class (that derives from System.Text.Encoding) that can be used to read the text file.
    class MyEncoding : System.Text.Encoding {
    this.Txt1.Text = (new StreamReader(ofd.File.OpenRead(), new MyEncoding())).ReadToEnd();
    Regards,
    Justin Van Patten
    Program Manager
    Common Language Runtime

Maybe you are looking for