Search Result

Collapse
12 results in 0.0014 seconds.
Keywords
Members
Tags
unicode
  •  

  • Le Duc
    started a topic Typing Unicode into WebBrowser Control

    Typing Unicode into WebBrowser Control

    Hello,

    I am trying to type an unicode character into the WebBrowser Control, but it alway change to the "?" character. I can copy the unicode character to clipboard and paste to WebBrowser, but can't typing directly to it.
    So WebBrowser Control doesn't support Unicode typing, but it can store & displaying unicode character. Any solutions for me to type unicode directly instead of copy and paste ?

    ...
    See more | Go to post

  • havanna
    started a topic exporting unicode strings from Access with VBA

    exporting unicode strings from Access with VBA

    I have some russian strings in Access (2000 Version and no way to upgrade, sorry, and VBA isn't my biggest strength)
    Exporting those tables to excel works fine, but I can't manage to export in a script to a flat text file, instead I get the dreaded ??????????.

    Is there a way to do it?
    See more | Go to post

  • Chrysie
    started a topic Python unicode conversion to UTF-8

    Python unicode conversion to UTF-8

    Hi,

    I am new to python. I am using python 2.6.6 with pyodbc-2.1.8 and pywin32-216 on Windows Vista.

    I was able to connect to MS Access with pyodbc and execute my SELECT statement to retrieve data from MS Access. However, what I have retrieved appeared to be in Unicode strings (e.g., u'xyz', etc.) which I could not use as keys to build a dictionary, and I could not use as strings to write regular expressions to match...
    See more | Go to post

  • How to use unicode letters within a HTML page?

    I need to use Sinhalese language Unicode letters within my personal web site. How can I do that ? Are their any special tags to insert Unicode letters?

    Final result should be like this web page. There are Sinhalese letters and they are displayed on the browser.
    http://mahamevnawa.blo gspot.com/2011/01/blog-post.html
    See more | Go to post

  • hadiyazdi
    started a topic How to copy files named with unicode characters?

    How to copy files named with unicode characters?

    Code:
    import shutil
    
    files = os.listdir("C:\\")
    for efile in files:
        shutil.copy(efile, "D:\\")
    I didn't think this simple script may crash whenever C: and D: are available and permissions are given, until I ran it on a pc with files named with unicode characters!

    Python converted these characters into question marks "????" when it got the list from os.listdir, and...
    See more | Go to post

  • s2krish
    started a topic accented characters to unaccented

    accented characters to unaccented

    Is there python library or function to convert accented characters to unaccented. For example

    From 'Terme \xc4\x8cate\xc5 \xbe' to 'Terme Čatež'.

    When I read Terme Čatež website using urllib.urlopen( ) functio, gives 'Terme \xc4\x8cate\xc5 \xbe'
    See more | Go to post

  • 2inshix
    started a topic Can someone provide some help with unicode please.

    Can someone provide some help with unicode please.

    I'm using python 2.6.5 on windows vista and for some reason I'm having trouble trying to get python to recognize unicode input.( A friend tried the exact same code on linux and it works fine)
    Code:
    >>> verb=u"とぶ"
    >>> verb[-1]==u"ぶ"
    False
    >>>

    Does anyone have any idea what's happening here?
    Isn't that supposed to yield True and not False?

    ...
    See more | Go to post
    Last edited by bvdet; May 29 '10, 04:41 PM. Reason: Add code tags

  • elimeli1
    started a topic snapshot_statement stmt_text unicode problem
    in DB2

    snapshot_statement stmt_text unicode problem

    Hi all

    I have a monitoring application that running outside the DB server that every 1 minutes queries the snapshot tables and logs it into an internal repository of it. for later tuning.

    I have a problem with getting SQL statements from it that has non-english letters inside.

    here is small sample test I did from control center to simulate the problem :

    select stmt_text from
    table(snapshot_ statement('DBNA ME',-1))...
    See more | Go to post

  • wmstudio
    started a topic OpenOffice.org, PostgreSQL and Unicode

    OpenOffice.org, PostgreSQL and Unicode

    I have a PostgreSQL database encode in UTF-8. I try to do a mail merge from OOwriter. This seems to work except for non western characters. E.g. when I access the database from pgAdmin, a GUI client I can see all UTF-8 encoded characters. When I cut a text from the GUI and paste this text in OOwriter everything works well. The same text through a mail merge only shows question marks. An example:
    ---------------
    เมืองไทย...
    See more | Go to post

  • How to insert Unicode data into table when pulling data from another table

    Hi,
    I'm trying to take data from varchar fields in one table and copy it to Nvarchar fields in another table. (Long story - now dealing with multiple languages, not enough space in row in current table for multiple Nvarchar fields...).

    I know how to insert new text into the Nvarchar fields:

    Code:
    INSERT INTO tblNotes ( noteID, note )
    SELECT 1, N'This is a unicode note'
    but the problem I'm having...
    See more | Go to post

  • desertavataraz
    started a topic Unicode fonts vs Seperate Self-Made Font
    in C

    Unicode fonts vs Seperate Self-Made Font

    I am going write an application in C++ that allows the user to see two languages at once, and allows them to search each individual language for words or keywords. I have a font that I made specially for the non-English language, which would allow me to simply use different fonts for each specific language. I could also control how the search works simply by reading the font tags, for each language, so I only get results in that specific language....
    See more | Go to post

  • bigturtle
    started a topic Pickling Unicode

    Pickling Unicode

    Using Python 2.6, I am trying to pickle a dictionary (for Chinese pinyin) which contains both Unicode characters in the range 128-255 and 4-byte Unicode characters. I get allergic reactions from pickle.dump() under all protocols.

    Here’s a simple test program:
    Code:
    # Program 1 (protocol 0), program 2 (protocol 2)
      PickleFile = codecs.open('PFile.utf', 'w', 'utf-8')    
      Str1 = u'lǘelü' 
      pickle.dump(Str1,
    ...
    See more | Go to post
Working...