Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to Import Unicode text into list box

Status
Not open for further replies.

yeungsprite

Programmer
Nov 28, 2002
25
US
Hi,

I would like to know how to import Unicode Text files into a list box. The method I am currently using is:

Dim fnum As Integer
Dim file_line As String

fnum = FreeFile
Open sDestFile For Input As fnum
Do While Not EOF(fnum)
Line Input #fnum, file_line
lstDest.AddItem file_line
Loop

but unfortunately, many of the words are not properly read into the list box. Any help would be greatly appreciated.

Thanx
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top