Results 1 to 5 of 5
  1. #1
    ashish_access is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jun 2013
    Posts
    6

    Problem in displaying and storing Hindi language in MS Access


    I need to create a form in hindi language in ms access .Also I need to store hindi text(in unicode) in database.
    Please suggest me some solution.

  2. #2
    Join Date
    May 2013
    Location
    Dallas TX
    Posts
    1,742

    Some General Pointers

    And here's a bunch of general notes I put together before I found that post:

    So, first, I assume that you would have the relevant MS Office language pack installed. Hindi's a big language grouping, so I would assume that Microsoft would have produced one. http://en.wikipedia.org/wiki/Microso...Language_Packs

    Also, that language pack and the regional settings should handle the "code page" aspect of making sure that access can handle storing and processing the Hindi character set. http://support.microsoft.com/kb/140409

    For Arabic characters, it looks like some settings must be set to UTF-8. It should be similar for Hindi. http://stackoverflow.com/questions/1...a-browser-page

    More about UTF-8 here. http://en.wikipedia.org/wiki/UTF-8

    It looks like the Hindi Devanagari characters are in the code range of X'0900'-X'097F' in UTF-8 and take up 3 bytes each for storage, with 8 closely related scripts in the language family taking up the range all the way to X'09FF'. http://en.wikipedia.org/wiki/Mapping...ilingual_Plane

    If you're not using native Access, then you need to make sure your ODBC connection supports UTF-8 as well. http://www.mirthcorp.com/community/f...ead.php?t=4608

    And there are similar settings for import and export functions to deal with.
    http://www.tek-tips.com/viewthread.cfm?qid=1486238

    Here's some notes about exporting to a CSV file, if you ever need that.
    http://stackoverflow.com/questions/4...-to-utf-16-csv


    Here's a site that has some useful VB6 code, some of which may be relevant as you learn more about your situation.
    http://www.cyberactivex.com/UnicodeTutorialVb.htm

    Here's a related question thread on the forums here. It doens't look like anoyone was able to help the poster, though. https://www.accessforums.net/forms/a...ext-20252.html

    Sorry I couldn't help more, but hopefully the above will get your started. As you learn more about how multilanguage support works in Access, please post your hard-earned knowledge back here for others to learn from. If you tell us, step by step, what worked and what didn't, we may be able to be of more help.

  3. #3
    ashish_access is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jun 2013
    Posts
    6
    What I acutally require is to store hindi text from a access form to access database in unicode.
    So please let me know how to do it.














    Quote Originally Posted by Dal Jeanis View Post
    And here's a bunch of general notes I put together before I found that post:

    So, first, I assume that you would have the relevant MS Office language pack installed. Hindi's a big language grouping, so I would assume that Microsoft would have produced one. http://en.wikipedia.org/wiki/Microso...Language_Packs

    Also, that language pack and the regional settings should handle the "code page" aspect of making sure that access can handle storing and processing the Hindi character set. http://support.microsoft.com/kb/140409

    For Arabic characters, it looks like some settings must be set to UTF-8. It should be similar for Hindi. http://stackoverflow.com/questions/1...a-browser-page

    More about UTF-8 here. http://en.wikipedia.org/wiki/UTF-8

    It looks like the Hindi Devanagari characters are in the code range of X'0900'-X'097F' in UTF-8 and take up 3 bytes each for storage, with 8 closely related scripts in the language family taking up the range all the way to X'09FF'. http://en.wikipedia.org/wiki/Mapping...ilingual_Plane

    If you're not using native Access, then you need to make sure your ODBC connection supports UTF-8 as well. http://www.mirthcorp.com/community/f...ead.php?t=4608

    And there are similar settings for import and export functions to deal with.
    http://www.tek-tips.com/viewthread.cfm?qid=1486238

    Here's some notes about exporting to a CSV file, if you ever need that.
    http://stackoverflow.com/questions/4...-to-utf-16-csv


    Here's a site that has some useful VB6 code, some of which may be relevant as you learn more about your situation.
    http://www.cyberactivex.com/UnicodeTutorialVb.htm

    Here's a related question thread on the forums here. It doens't look like anoyone was able to help the poster, though. https://www.accessforums.net/forms/a...ext-20252.html

    Sorry I couldn't help more, but hopefully the above will get your started. As you learn more about how multilanguage support works in Access, please post your hard-earned knowledge back here for others to learn from. If you tell us, step by step, what worked and what didn't, we may be able to be of more help.

  4. #4
    ashish_access is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jun 2013
    Posts
    6
    In access when we store some text in language other than English in the database then it is stored in that language in the database not in unicode.
    So when I try to migrate the data from access to SQL Server the data in that field is shown as [][][][]
    Please suggest some solution.













    Quote Originally Posted by Dal Jeanis View Post
    And here's a bunch of general notes I put together before I found that post:

    So, first, I assume that you would have the relevant MS Office language pack installed. Hindi's a big language grouping, so I would assume that Microsoft would have produced one. http://en.wikipedia.org/wiki/Microso...Language_Packs

    Also, that language pack and the regional settings should handle the "code page" aspect of making sure that access can handle storing and processing the Hindi character set. http://support.microsoft.com/kb/140409

    For Arabic characters, it looks like some settings must be set to UTF-8. It should be similar for Hindi. http://stackoverflow.com/questions/1...a-browser-page

    More about UTF-8 here. http://en.wikipedia.org/wiki/UTF-8

    It looks like the Hindi Devanagari characters are in the code range of X'0900'-X'097F' in UTF-8 and take up 3 bytes each for storage, with 8 closely related scripts in the language family taking up the range all the way to X'09FF'. http://en.wikipedia.org/wiki/Mapping...ilingual_Plane

    If you're not using native Access, then you need to make sure your ODBC connection supports UTF-8 as well. http://www.mirthcorp.com/community/f...ead.php?t=4608

    And there are similar settings for import and export functions to deal with.
    http://www.tek-tips.com/viewthread.cfm?qid=1486238

    Here's some notes about exporting to a CSV file, if you ever need that.
    http://stackoverflow.com/questions/4...-to-utf-16-csv


    Here's a site that has some useful VB6 code, some of which may be relevant as you learn more about your situation.
    http://www.cyberactivex.com/UnicodeTutorialVb.htm

    Here's a related question thread on the forums here. It doens't look like anoyone was able to help the poster, though. https://www.accessforums.net/forms/a...ext-20252.html

    Sorry I couldn't help more, but hopefully the above will get your started. As you learn more about how multilanguage support works in Access, please post your hard-earned knowledge back here for others to learn from. If you tell us, step by step, what worked and what didn't, we may be able to be of more help.

  5. #5
    Join Date
    May 2013
    Location
    Dallas TX
    Posts
    1,742
    More data posted on the second thread at
    https://www.accessforums.net/forms/p...tml#post179377

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Output file print in mangal font (hindi language)
    By Naresh in forum Programming
    Replies: 0
    Last Post: 06-21-2012, 12:47 AM
  2. Interpreter/language problem
    By boo in forum Queries
    Replies: 2
    Last Post: 12-19-2011, 04:51 AM
  3. Combo Box Displaying Text, But Storing ID
    By SeaTigr in forum Forms
    Replies: 4
    Last Post: 11-22-2011, 08:58 AM
  4. Displaying Multiple Values, Storing One.
    By greatfallz in forum Forms
    Replies: 10
    Last Post: 08-02-2011, 01:18 AM
  5. Replies: 3
    Last Post: 02-04-2011, 07:32 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums