Vb.net Type Dataset is not defined... 102 Errors!

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
Hello all. I have a VB.net winforms application that I have been working on for months that just produced 102 errors... All of them are similar to the errors that i pasted below and pertain to every dataset that is in the project (approx 35 datasets).
I have gotten this error almost daily but I have always been able to clean & rebuild the application and the errors goes away. This time they wont go away... I have been searching for 2 days for a solution and have not been able to find anything.
It happens so often that i really have no idea what would be causing it. Any help would be greatly appreciated!! I am at a standstill...
******************** Application Errors - 102 total errors...

Error 102 Type RestoreSoft.Customer_DataSet is not defined.
Error 104 Type RestoreSoft.Customer_DataSetTableAdapters.v2_CustomerTableAdapter is not defined.

Error 110 TableAdapterManager is not a member of customer_Events_DataSetTableAdapters.

********************* Here are a few lines from one of the form designers that have errors<br/>

Friend WithEvents Customer_Events_DataSet As RestoreSoft.customer_Events_DataSet<br/>
Friend WithEvents V2_Customer_EventsBindingSource As System.Windows.Forms.BindingSource<br/>
Friend WithEvents V2_Customer_EventsTableAdapter As RestoreSoft.customer_Events_DataSetTableAdapters.v2_Customer_EventsTableAdapter<br/>
Friend WithEvents TableAdapterManager As RestoreSoft.customer_Events_DataSetTableAdapters.TableAdapterManager<br/>
Friend WithEvents Appt_DateDateTimePicker As System.Windows.Forms.DateTimePicker
VB offers this solution when you hover over the error...
Change this:
RestoreSoft.customer_Events_DataSetTableAdapters.sched_TableAdapter
To this:
Global.RestoreSoft.customer_Events_DataSetTableAdapters.sched_TableAdapter

<br/>

View the full article
 
Back
Top