| Thread | Last Post | Replies |
|
| [DataGrid, adding multiple Rows to DataTable] How to speed up the process? | 28 Jun 2006 15:47 GMT | 2 |
Adding thousands (let's say 100'000) of rows to a DataSet->DataTable in the way (C++ style): DataTable *table = dataset->Tables->Item[S"MyTable"]; table->Clear();
|
| Implement IBindingListView on List<T> | 27 Jun 2006 05:10 GMT | 6 |
I recently replaced a datatable with a lighter weight generic List<myClass> object. I created a BindingSource, made the List the DataSource for the BindingSource, and the set the BindingSource as the datasource for a DataGridView. I managed to implement filtering and sorting ...
|
| Controlling the "new row" in a DataGridView | 26 Jun 2006 16:53 GMT | 3 |
In .Net 2.0 the new DataGridView control has a property to "AllowUserToAddRows" which can be set to true or false. The doc says that this controls whether the user sees the "new row" (MS Access terminology) at the bottom of the Grid control.
|
| ListBox and ComboBox design time binding problem | 26 Jun 2006 10:55 GMT | 1 |
I have created a Component called a BOConnector that implements IBindingList so it can provide access to a list of business objects to be bound to controls. At design time there is no live list of objects so BOConnector creates an
|
| Master / Detail : One DataSource, Multiple Bindings... | 26 Jun 2006 00:14 GMT | 3 |
Hi i'm using .NET2, I've got 2 screens : - A List : Grid binded to an object array, an Edit button opening the detail Screen.
|
| DataGridView Column Header Click Selection Problem | 23 Jun 2006 03:10 GMT | 11 |
I’m using VB.Net 2005 and dgv in a Windows Forms App to present MSSQL 2000 Table Data for display only and not updating, allow User to be able to Sort and to enable User navigation based on clicking any Row. I just can’t get all the
|
| DataAdapter Update not working | 21 Jun 2006 18:42 GMT | 3 |
I thought I'd try some drag and drop database work, so I created a datasource for a simple SQL 2005 Express DB and dragged one of the tables from the datasource onto a form, where it created a grid and nav bar, along with the necessary binding controls.
|
| 2.0 Nullable Types won't Bind | 21 Jun 2006 02:11 GMT | 7 |
After some extensive tests, I believe I know why nullable types won't bind correctly. It comes down to the way the Parse event needs to return the value in the cevent.Value object. For example, if I have a class I want to bind to:
|
| Workflow question for a form with multiple levels of data | 20 Jun 2006 08:44 GMT | 3 |
Ok, I am doing this in DotNet 2.0 and am trying to workout the workflow and process of this. I have a form with a section for me data header, 4 fields. I have a subsection that is a relationship, 8 fields and a many-one relationship. I
|
| Refresh DataView / DataGridView...! Hope somebody can help! | 14 Jun 2006 19:26 GMT | 1 |
First of all, i know that this topic is discussed very often in this newsgroup, but i can't find an answer to my question. I try to describe my problem as good as possible (I'm using C#): I have a DataBase-Class with DataSets and DataViews.
|
| BindingSource strange dehaviour | 14 Jun 2006 11:10 GMT | 1 |
Can anyone tell me why the following snippet of code throws an exception on the forth iteration of the loop? If we comment out the last line of code everything is okay. DataSet dataSet = new DataSet();
|
| Changes in BindingSource not reflected in DataGridView | 13 Jun 2006 19:53 GMT | 1 |
Hello, please bear with me on a question that seems to be asked all over (but for me, not adequately answered!). I have been trying to figure out what I'm missing for days now and haven't found a good explanation. The IDE is VS .NET 2k5.
|
| DataGridView Add Row Does Not Work | 13 Jun 2006 13:56 GMT | 1 |
I have a datagridview populated with data and one edit column is a combobox. This column is also populated correctly. I can edit and delete the items in the datagridview and they save properly using the Update function on the table adaptor. The new rows are not inserting and ...
|
| datagridview linking | 10 Jun 2006 04:30 GMT | 2 |
i have two tables, related by a one to many relationship. i want a form with both tables showing, and when i click on a record in the 'one' datagridview, i want the 'many' view to show only the related records. i've been searching around and have created a relation between the two ...
|
| Databinding a checkbox causes DataSet.HasChanges = true | 09 Jun 2006 03:05 GMT | 1 |
this question replies to the Compact Framework 2.0 . I am using a Webform with Databinding a DataSet. I use the DataSet.HasChanges and RowState to find out if changes took place or not before closing a form.
|