Quote Originally Posted by stanav View Post
Use the SaveFileDialog class as Kleinma suggested. Something like this:
Code:
      Using sfd As New SaveFileDialog()
            With sfd
                .Title = "Select Log File to Save As"
                .Filter = "Text File (*.txt)|*.txt"
                .OverwritePrompt = True
                If .ShowDialog() = Windows.Forms.DialogResult.OK Then
                    System.IO.File.WriteAllText(.FileName, "the text to write to the file here")
                End If
            End With
        End Using
I appreicate it!