1
vote
1answer
137 views

Creating a List of items from a binding source

I have a binding source that is connected to a database. The binding source is connected to a data table that has 4 columns. Terms, Definitions, Store ID, and ID. I currently have a filter on Store ID ...
0
votes
1answer
438 views

Select a tableadapter at runtime

Suppose there are n buttons and one datagridview. I drag a dataset which contains n tables, therefore create n tableadapters that has the same connection string. I want to click each button to ...
0
votes
2answers
1k views

DataSet.HasChanges is true even immediately after TableAdapter.Update is run

I've got some legacy dataset code which I'm updating. I'm attempting to determine if the dataset has changes to it so I can properly prompt for a save request. However myDataset.HasChanges() always ...
2
votes
1answer
3k views

TableAdapter.update method, where did it go?

I made a ListBox with your standard smart-control thing, and have it connected to a database. It gets the data I've pre-generated in there via query builder, so when I do this: ...
2
votes
2answers
6k views

ADO.NET databinding bug - BindingSource.EndEdit() changes current position

What is the correct order of processing an insert from a data-bound control using BindingSource, DataSet, and TableAdapter? This is causing me eternal confusion. I have a form that is used to add a ...
0
votes
1answer
1k views

Forms Databinding - DataSet not updating?

I have a Form (Compact Framework, actually) with a few fields, a date and a string, among other things. Both TextBox controls are bound to properties in a BindindSource. The BindindSource has a ...