本文介绍了需要帮助解决此错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Dim sfd As New SaveFileDialog
            sfd.Filter = "Text Document (.txt)|*.txt"
            Dim sv As String
            sfd.ShowDialog()
            sv = sfd.FileName
            Dim sw As New StreamWriter(sv) <---ERROR HERE
                sw.Write(RichTextBox1.Text)
            sw.Close()



弹出的错误

{空路径名称不合法。}

我正在使用vs 2010 Express


the error that pops up
{"Empty path name is not legal."}
I'm using vs 2010 Express

推荐答案

if (sfd.ShowDialog() == DialogResult.OK) // Sorry for the c# syntax
{
    Dim sw As New StreamWriter(sfd.FileName)
    sw.Write(RichTextBox1.Text)
    sw.Close()
}



这篇关于需要帮助解决此错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 13:47