未处理System.ArgumentException HResult=-2147024809 Message=值不在预期的范围内。 Source=WindowsBase
1.案列:privatevoidinputdata_Click(objectsender,RoutedEventArgse){OpenFileDialogopenFile...
1.案列:
private void inputdata_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.InitialDirectory = @"D:\\";
openFileDialog.Filter = "文本文件|*.dat|C#文件|*.cs|记事本|*.txt|所有文件|*.*";
openFileDialog.RestoreDirectory = true;
openFileDialog.FilterIndex = 1;
if ((bool)openFileDialog.ShowDialog().GetValueOrDefault())//打开 (问题出现在这里)
{
lrpoints = ReadLRP(lrpoints,openFileDialog.FileName);
}
}
2.具体问题:
未处理System.ArgumentException
HResult=-2147024809
Message=值不在预期的范围内。
Source=WindowsBase
StackTrace:
在 MS.Internal.Interop.HRESULT.ThrowIfFailed(String message)
在 MS.Internal.AppModel.ShellUtil.GetShellItemForPath(String path)
在 Microsoft.Win32.FileDialog.PrepareVistaDialog(IFileDialog dialog)
在 Microsoft.Win32.FileDialog.RunVistaDialog(IntPtr hwndOwner)
在 Microsoft.Win32.FileDialog.RunDialog(IntPtr hwndOwner)
在 Microsoft.Win32.CommonDialog.ShowDialog()
由于字数有限,下面的就不复制了呢。
望大神指点!谢过~ 展开
private void inputdata_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.InitialDirectory = @"D:\\";
openFileDialog.Filter = "文本文件|*.dat|C#文件|*.cs|记事本|*.txt|所有文件|*.*";
openFileDialog.RestoreDirectory = true;
openFileDialog.FilterIndex = 1;
if ((bool)openFileDialog.ShowDialog().GetValueOrDefault())//打开 (问题出现在这里)
{
lrpoints = ReadLRP(lrpoints,openFileDialog.FileName);
}
}
2.具体问题:
未处理System.ArgumentException
HResult=-2147024809
Message=值不在预期的范围内。
Source=WindowsBase
StackTrace:
在 MS.Internal.Interop.HRESULT.ThrowIfFailed(String message)
在 MS.Internal.AppModel.ShellUtil.GetShellItemForPath(String path)
在 Microsoft.Win32.FileDialog.PrepareVistaDialog(IFileDialog dialog)
在 Microsoft.Win32.FileDialog.RunVistaDialog(IntPtr hwndOwner)
在 Microsoft.Win32.FileDialog.RunDialog(IntPtr hwndOwner)
在 Microsoft.Win32.CommonDialog.ShowDialog()
由于字数有限,下面的就不复制了呢。
望大神指点!谢过~ 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励20(财富值+成长值)
1个回答
展开全部
参考这里的问题,进行解决。http://www.myexception.cn/h/993172.html
追问
恩呢,谢谢哈,已经解决了。文件路径语法的错误,
openFileDialog.InitialDirectory = @"D:\\";
改为:
openFileDialog.InitialDirectory = @"D:\";
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询