Change Settings of Text File

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • danpclements
    New Member
    • Oct 2006
    • 2

    Change Settings of Text File

    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:

    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:
    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 :)
  • danpclements
    New Member
    • Oct 2006
    • 2

    #2
    Nobody? Please, I can't seem to find it anywhere on the internet

    Comment

    Working...