我如何在vb.net中使用savefiledialog

前端之家收集整理的这篇文章主要介绍了我如何在vb.net中使用savefiledialog前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个名为TextEditPro的程序,我刚刚启动它,我遇到了一个问题.

当我有单击另存为的代码…我不知道如何使用savefiledialog所以当你点击另存为它会弹出!

有帮助吗?

学习使用 MSDN – SaveFileDialog的 documentation就是一个例子
Private Sub button1_Click(sender As Object,e As System.EventArgs)
    Dim myStream As Stream
    Dim saveFileDialog1 As New SaveFileDialog()

    saveFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*"
    saveFileDialog1.FilterIndex = 2
    saveFileDialog1.RestoreDirectory = True 

    If saveFileDialog1.ShowDialog() = DialogResult.OK Then
        myStream = saveFileDialog1.OpenFile()
        If (myStream IsNot Nothing) Then 
            ' Code to write the stream goes here.
            myStream.Close()
        End If 
    End If 
End Sub
原文链接:https://www.f2er.com/vb/255564.html

猜你在找的VB相关文章