Jump to content

guardar texto


Recommended Posts

eso me gustaria guardar el texto de un RICHTEXTBOX en VISUAL BASIC EXPRESS .NET 2008,

 

en formato UTF-8, pero no se como, me da la opcion para 4 o 5 tipos, pero ninguno corresponde a UTF-8

 

como puedo hacerlo , ayuda xD

 

esto tengo, el cual usa el metodo de guardar del mismo control

 

TEXT.SaveFile(Opciones.TextBoxASF.Text + "\" + Opciones.ComboBoxIMGFolders.SelectedItem + "\rsss56.txt", RichTextBoxStreamType.PlainText)

 

pero donde dice " RichTextBoxStreamType.PlainText ", el cual es ansii, alli debo seleccionar el formato, pero no se como colocar en formato UTF-8

 

 

 

 

ya averigue como xD

 

 

Dim cadena As String

Dim reader As New StreamReader("ubicacion del archivo de texto", System.Text.Encoding.Default)

Dim writer As New StreamWriter("ubicacion del archivo de texto", False, System.Text.Encoding.UTF8)

 

Try

cadena = reader.ReadToEnd()

Finally

reader.Close()

End Try

 

Try

writer.WriteLine(cadena)

Finally

writer.Close()

End Try

 

cierren si desean

Edited by keznki
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...