
read chinese character words from XML file using filectl
I try to read a XML file which contains chinese words data using filectl
(shown as below) but not success.
Set fileXML = CreateObject("FileCtl.File")
fileXML.Open "AAA.xml", fsModeInput, fsAccessRead, fsLockRead
sContactsXML = fileXML.Input(fileXML.LOF)
fileXML.Close
Set fileXML = Nothing
xmlDoc.loadXML sContactsXML
It shows the non chinese character. I have tried to use INPUTB but error
shown in XMLdoc.loadXML. Do you know how to solve this problem?
Thanks in advance
Bennett