I did some searching, and found this post on another forum: http://bytes.com/topic/visual-basic/answers/720207-type-application-dataset-not-defined where the user had the same error I am getting. Turns out he had a class with the same name as his root namespace.
another user posted, describing my issue perfectly:
------------------------------------------
i. I'm having the same problem, only that I dont have a class name the same as my project and the
compiler always puts before the name of the dataset, the name of my project like this:
- Me.UnitsDS=NewRequisitionPO.UnitsDS
where RequisitionPO is the name of my project.
I temporarily fix this issue doing one of two things. Either deleting the name of my project and
leaving the line like this:
or writing the word global before the name of the project like this:
- Me.UnitsDS=NewGlobal.RequisitionPO.UnitsDS
but then again, when I go to the form and compile again it rewrites the code and the error shows up.
And if I add more datasets, the error is reflected in all of them and all the objects that have to do
with the datasets such as tableadapters.
Can anyone give me a clue on how to fix this maddening error?
Thanks in advance
Gabriela
----------------------------------------------------------------
This seems to be pointing to a naming error somewhere. All my forms and files have unique names, with the exception of a .resx file that has the same name as the project/application. However, this file has been there, and been named that since the inception and never caused an error. I dont understand what is going on.
please help! ANY suggestions or thoughts? anything at all?