Hello All,
I am trying to read Unicode (Kanji character) data from a text file.
When I store unicode data into variable my Kanji character gets messed
up.
I am using following code
Open File1 For Input Access Read As #1
While Not EOF(1)
Line Input #1, data ' each line has English + Kanji characters
data
'Debug.Print data
Can some one help or guide to store English + Kanji (Unicode) data.
Thank you,
AVR
I am trying to read Unicode (Kanji character) data from a text file.
When I store unicode data into variable my Kanji character gets messed
up.
I am using following code
Open File1 For Input Access Read As #1
While Not EOF(1)
Line Input #1, data ' each line has English + Kanji characters
data
'Debug.Print data
Can some one help or guide to store English + Kanji (Unicode) data.
Thank you,
AVR
Comment