EntitySpaces Version # 2007.0.318.0
MyGeneration Version # 1.2.0.2
Inside my solution i have a project called Calltracker.Library. This is where I store my Custom and Generated BusinessObjects
My form is in a project called CTWin. This project has a reference to Calltracker.Library
I add a datasource, pointing to CallTracker.Library.BusinessObjects.CallTypeCollection
I drag it onto the form and a DataGridView is created.
When i try to run, i get this error inside the Designer.vb file:
Type 'CallTracker.Library.BusinessObjects.CallTypeCollection' is not defined.
pointing to this line of code:
Code:
Me.CallTypeCollectionBindingSource.DataSource = GetType(CallTracker.Library.BusinessObjects.CallTypeCollection)
If i add this line to the Designer Code:
Code:
Imports CallTracker.Library
i can change the designer code to this:
Code:
Me.CallTypeCollectionBindingSource.DataSource = GetType(BusinessObjects.CallTypeCollection)
I'm sure i'm missing something simple but cannot figure it out. i want to avoid having to modify the designer code.