i want to change the coding of the text file from Anscii to Unicode before saving, so i can save Korean Characters to the file for getting back later with a seperate program. to save the document so far, this is the code i have:
that is in a Save button i have... How can i change it to save the file in unicode?? and would i have to put in a certain place? Any help would be great :)
Code:
Dim strName As String On Error GoTo ErrHandler strName = InputBox("Filename:") Open strName & ".txt" For Output As #1 Print #1, TextBox1.Text Close #1 ErrHandler:
Comment