Hi Al,
this is what I showed you in the previous post I think,
place a richtextbox and a button on a form then copy paste this code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As _
System.EventArgs) Handles Button1.Click
RichTextBox1.Rtf =
"{\rtf1\ansi\ansicpg1252\deff0\deflang1043{\fonttbl{\f0" & _
"\fnil\fcharset0 Microsoft Sans Serif;}}\viewkind4\uc1\pard\f0\fs17 test
hallo\par}"
Dim objWriter As New StreamWriter("c:\test.txt")
objWriter.WriteLine(RichTextBox1.Text)
objWriter.Close()
End Sub
I hope this helps you
greetz Peter