[ vb 2008 ] SaveFileDialog 사용예제 본문

카테고리 없음

[ vb 2008 ] SaveFileDialog 사용예제

객과 함께. 2009. 12. 29. 19:08


    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        SaveFileDialog1.Filter = "Text Files (*.txt) | *.txt"
        SaveFileDialog1.ShowDialog()
        If SaveFileDialog1.FileName <> "" Then
            FileOpen(1, SaveFileDialog1.FileName, OpenMode.Output)
            PrintLine(1, RichTextBox1.Text)
            FileClose()
        End If
    End Sub

 

임포트 system.IO미리 선언 해 두어야 한다.