In an Excel VBA project, I need to read and write UTF-8-encoded text files. After reading this and this SO topic, I am considering using ADO stream objects to accomplish this.
The project is going to be distributed to a public user base. I don't know the number of installations, but judging from the download rates after updates, it must be around 1000 or so.
Is it safe to assume that the VBA command CreateObject("ADODB.Stream") works on every Windows 2000-Windows 7 computer?
Is the availability of the ADO stream object or its functionality in my VBA project dependent on the users' security or other settings?
If there is a risk that users will experience runtime errors due to the ADODB.Stream obejct in the new version of my project, I would rather not want to use it.