Hi, auf Frage 1 habe ich jetzt bei mir eine schicke Lösung gefunden. Und zwar in der MSDN (.NET Framework Developer Center), habe einfach über Google auf SaveFileDialog() gesucht Bestimmt findet sich auch so die Antwort auf Frage Nummer 2
Hier der Code
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
’ Create a SaveFileDialog to request a path and file name to save to.
Dim saveFile1 As New SaveFileDialog()
’ Initialize the SaveFileDialog to specify the RTF extention for the file.
saveFile1.DefaultExt = „*.rtf“
saveFile1.Filter = „RTF Files|*.rtf“
’ Determine whether the user selected a file name from the saveFileDialog.
If (saveFile1.ShowDialog() = System.Windows.Forms.DialogResult.OK) _
And (saveFile1.FileName.Length > 0) Then
’ Save the contents of the RichTextBox into the file.
RichTextBox1.SaveFile(saveFile1.FileName)
End If
End Sub
Bei mir heisst der Button halt Button2, musst Du ggf. für Dich anpassen. Meine RichTextBox hat bei mir den Namen RichtTextBox1,
auch dies musst Du ggf. bei Dir anpassen. Wenn ich das richtig
gelesen habe, dann kann man die Werte für saveFile1.Filter entsprechend
Wunsch (z. B. auf .doc) anpassen.