GridControl不断抛出无效的路径异常

时间:2016-03-19 19:23:57

标签: c# database gridview devexpress ms-access-2010

所以我使用DevExpress的XtraGrid组件,设置连接,预览(在设计中)实际显示我的数据库表的内容,在运行时,我设法捕获此异常,这表明路径设置为数据库是错误的,因为我不记得错误的路径既不记得预览错误。 enter image description here 这是它抛出错误的行

private void Main_Load(object sender, EventArgs e)
{
    try
    {
        this.fournisseursTableAdapter.Fill(this.maindbDataSet.Fournisseurs); //Catches exception here
    xtraTabControl1.ShowTabHeader = DefaultBoolean.False;
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
 }

1 个答案:

答案 0 :(得分:1)

问题是App.config文件有错误的路径。检查文件以更正路径。