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
1answer
512 views

Using a parameter in a DataTable - ORA-01008: not all variables bound

Environment: Visual Studio 2010 Windows Forms Application Oracle Database I am trying to use a parameter in a DataSet.xsd DataTable. The query and parameter work fine in Query Builder but gives an ...
2
votes
1answer
330 views

Access/Pass variable between windows form and DataSet TableAdapter SQL where clause

In Visual Studio 2010, I have a windows forms application frmMain.cs with a ComboBox. From the form itself I can access its value with cmbxYear.SelectedValue. I also have a DataSet.xsd file to bind to ...
0
votes
2answers
2k views

Relaxing Constraints for a data table adapter

I'm trying to relax my constraints while using a data table adapter, but I'm getting a Object reference not set to an instance of an object error. It happens on the line that says ...
1
vote
2answers
1k views

Declaring a Variable TableAdapter on a Form

This is hopefully a fairly straightforward question. I am building a generic search form in my application. This will allow the user to search for various records throughout the application. The ...
0
votes
1answer
669 views

TableAdapter Update fail

I have a VB windows Form project that connects to several DataTables in an Access DB. On my form I have several textboxes, comboboxes and datetimepickers that are bound to those sources. With one ...
1
vote
6answers
30k views

Delete selected row from datagridview and update DB

I have a datagridview and the user will select a row, then click on a Delete button. The row should then delete AND the DB needs to update using tableadapters. How can I do this? The code is in C#... ...
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 ...