yeungsprite
Programmer
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
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