在 c#.net 中的 OpenFileDialog.Showdialog 上抛出错误

发布于 2024-11-08 05:05:57 字数 742 浏览 0 评论 0原文

我正在 XP 机器上开发一个 Windows 应用程序。在我的一种形式中,我有一个文本框,用于显示带有 openfile 对话框路径的选定文件。另一个控件是调用 openfile 对话框的按钮。

当我单击按钮来调用打开的对话框时,我收到以下错误

点击打开 OpenFileDialog 按钮时抛出错误

表单的其余部分包含其他控件,例如数据网格和下拉列表。

请帮我解决这个问题

提前致谢。

问候, Sudarshan

更新

这是我点击按钮的代码

        OpenFileDialog  openfiledialog = new OpenFileDialog();
        openfiledialog.Filter = "xml files|*.xml";
        openfiledialog.Multiselect = false;
        DialogResult dr;
        dr = openfiledialog.ShowDialog();

        if (dr == DialogResult.OK)
        {
            txtgrdDataFile.Text = openfiledialog.FileName.ToString();
        }

I am developing a windows application in XP machine.in my one form i have one text box for showing the selected file with path from openfiledialog box.and the other control is button to call the openfiledialog box.

When I cliked on the button to call the open dialog box i am getting the follwing error

Throwing error on button clicking to open the OpenFileDialog

rest of the form contains another controls like data grid and dropdowns.

Please help me to resolve this issue

Thanx in advance.

Regards,
Sudarshan

Update

Here is my code on button click

        OpenFileDialog  openfiledialog = new OpenFileDialog();
        openfiledialog.Filter = "xml files|*.xml";
        openfiledialog.Multiselect = false;
        DialogResult dr;
        dr = openfiledialog.ShowDialog();

        if (dr == DialogResult.OK)
        {
            txtgrdDataFile.Text = openfiledialog.FileName.ToString();
        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文