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

时间:2011-05-17 06:15:11

标签: c# openfiledialog clsid

我正在XP机器中开发一个Windows应用程序。在我的一个表单中,我有一个文本框用于显示所选文件的路径来自openfiledialog框。另一个控件是按钮来调用openfiledialog框。

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

Throwing error on button clicking to open the OpenFileDialog

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

请帮我解决此问题

提前完成。

此致 苏达

更新

这是我点击按钮上的代码

        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();
        }

0 个答案:

没有答案