|
|
Browse by Tags
All Tags » BindingSource
-
Hi,
This is what I am trying to do.
I have a combobox in my datagridview and i bounded that combobox to
a productsCollectionBindingSource.
my code is:
Code: ProductCollection prodColl = new ProductsCollection();
prodColl.LoadAll();
productsCollectionBindingSource.DataSource = ...
-
I need to know how I can do the following using ES:
I have a Zero-to-Many object, will call Employee which has the Zero-to-Many Jobs.I need to be able to filter the jobs based on a property called ''EffectiveDate'' into two DataGridViews.
Basically, I would have a 'current jobs' gridview and a 'future jobs' gridview.
So far, I have two main ...
|
|
|