If you're exporting a table or query, you can select UTF-8 in the "code
page" list in the Advanced dialog in the Text Export Wizard.
But if you want to create UTF-8-encoded strings in VBA and write them
direct to disk I honestly don't know what's the best way. I'd start with
a web search for VB libraries or controls that can do it.
Dim oXML As New MSXML2.DOMDocument
oXML.loadXML ("<root>Your utf-8 string […] </root>")
oXML.Save (fileName)
Regards, Angel
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.