表单设计器视图中的数据库数据集错误

时间:2013-12-07 10:00:22

标签: c# visual-studio-2012

我正在使用visual studio 2012,c#并创建了几个Windows窗体应用程序但是每当我尝试运行我的程序时,“设计器视图”都会出错:

this.employee_DatabaseDataSet = new Form1.Employee_DatabaseDataSet();
this.tblCustLoginBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.tblCustLoginTableAdapter = new Form1.Employee_DatabaseDataSetTableAdapters.**tblCustLoginTableAdapter();
this.tableAdapterManager = new Form1.Employee_DatabaseDataSetTableAdapters**.TableAdapterManager();

在我看来,我的数据源存在问题,但我已经开始新鲜了,所以我看不出问题所在。

这是出现的错误: “类型名称为Employee_DatabaseDataSet的类型不存在于form1.form1”

有人能帮助我吗?感谢您的阅读

1 个答案:

答案 0 :(得分:0)

()之后你遗漏了Form1个括号对 试试这个:

this.employee_DatabaseDataSet = new Form1().Employee_DatabaseDataSet();    
this.tblCustLoginBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.tblCustLoginTableAdapter = new Form1().Employee_DatabaseDataSetTableAdapters.tblCustLoginTableAdapter();
this.tableAdapterManager = new Form1().Employee_DatabaseDataSetTableAdapters.TableAdapterManager();