尝试使用OpenFileDialog

时间:2015-04-24 16:09:14

标签: vb.net location webdav explorer openfiledialog

在表单中,我有一个启动Windows资源管理器以打开文档的按钮。我尝试打开我的文件所在的文件夹,但是我收到了这个错误:

Open file error

使用InitialDirectory时遇到同样的错误:

'Open Dialog to select file, only excel files can be selected(.xls, .xlsx, .xlsm)
 OpenFileDialog1.Reset()
 OpenFileDialog1.Filter = "Excel Files|*.xls;*.xlsx;*.xlsm"
 OpenFileDialog1.InitialDirectory = "https://stuff.ca/blabladocsdav/nodes/3175677/"
 OpenFileDialog1.ShowDialog()

但是如果我将路径粘贴到地址栏中,我就不会收到错误。粘贴地址栏中的路径时,我可以选择该文件并将其打开

编辑1 :视觉图片 Show result when working

编辑2 :我做了更多测试:如果我提供特定路径,我可以打开或保存文件,但是我无法打开目录并让用户选择保存位置。 有任何想法如何解决这个问题?

0 个答案:

没有答案