This is an SAPi5.1 utility called TexttoSPeech made in VB.
VB can open files as binaries and the convert it to unicode to displayed in
an editbox which can show characters of any language
The code is this:
Open ComDlg.FileName For Binary Access Read As 1
MainTxtBox.Text = StrConv(InputB$(LOF(1), 1), vbUnicode)
Close #1
I could find equivalents for VFP. STRCONV function offer some of this but
the equivalent function in VB is different. I could not display chinese
words in an edit box.
Had someone done something similar?
Thanks.
Alejandro Fernandez