コードのdesigner.cs部分では、コンボボックスをデータベース駆動型にしただけです(データを正常にプレビューしたので、機能します)が、コンパイルしようとすると、2つの固有のエラーがスローされます。
1)エラー1タイプ名「mtdDesktopApplicationDataSet」がタイプ「DesktopApplication.DesktopApplication」に存在しません
2)エラー2タイプ名「mtdDesktopApplicationDataSetTableAdapters」がタイプ「DesktopApplication.DesktopApplication」に存在しません
最初のエラーは最初の行にあり、他のエラーは「mtdDesktopApplicationDataSetTableAdapters」がどこにある場合でも表示されます(4行)
適切なファイルはすべてそこにあるように見えますが、正しく接続されていませんか?
this.mtdDesktopApplicationDataSet = new DesktopApplication.mtdDesktopApplicationDataSet();
this.tblStudyBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.tblStudyTableAdapter = new DesktopApplication.mtdDesktopApplicationDataSetTableAdapters.tblStudyTableAdapter();
this.tblDeliveryGroupBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.tblDeliveryGroupTableAdapter = new DesktopApplication.mtdDesktopApplicationDataSetTableAdapters.tblDeliveryGroupTableAdapter();
this.tblDeliveryBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.tblDeliveryTableAdapter = new DesktopApplication.mtdDesktopApplicationDataSetTableAdapters.tblDeliveryTableAdapter();
this.tblDeliveryDataSetBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.tblDeliveryDataSetTableAdapter = new DesktopApplication.mtdDesktopApplicationDataSetTableAdapters.tblDeliveryDataSetTableAdapter();
((System.ComponentModel.ISupportInitialize)(this.mtdDesktopApplicationDataSet)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tblStudyBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tblDeliveryGroupBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tblDeliveryBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tblDeliveryDataSetBindingSource)).BeginInit();