| Thread | Last Post | Replies |
|
| cannot put a "null" into access programatically | 30 May 2007 14:18 GMT | 2 |
I have an access database as datasource to a datagridview. The datagridview allows me to default columns to null. All this seems to work ok and save works fine. For example, if I leave out the datetime column then a null goes into the access db and next time it shows up as ...
|
| DataGridView won't bind to IList(Of T) implementation. | 28 May 2007 23:41 GMT | 4 |
I've been trying to gea DataGridView to bind to an IList(Of T) implementation. Basically, I have a fixed size list where the members can be changed, but new members can not leave and old members cannot be deleted.
|
| forcing update | 25 May 2007 20:44 GMT | 1 |
I've got a DataGridView bound to a list of plain objects. One of the columns of checkboxes is bound to a boolean property. When I check/uncheck a checkbox the property of the underlying object is updated as soon as the according cell loses the focus.
|
| Form Datagrid Parent/Child details databinding to SQL dataset | 23 May 2007 19:51 GMT | 3 |
Hi, i have the following script which creates the two tables, i wish to have a master/details form (with two datagrids on the same form, i have a many to one relationship with tracks to album) but having i cant quite get it to work. Please see the sql script below:
|
| BindingSource not raising BindingComplete events | 22 May 2007 03:26 GMT | 3 |
The DataSource is getting updated but my BindingComplete event handler is not entered. What can cause this behavior? -or- How does one watch "event traffic"? Is it handled by the form's messaging
|
| How to select multiple rows in a bounded source using a unbounded checkbox column | 22 May 2007 01:33 GMT | 1 |
Can any one help me. I want to add a checkbox column to the datagridview to select multiple rows in the datagridview. I am retrieving the data from the database, and then want to add a DataGridCheckBoxColumn for selection of rows. I want to do
|
| Master/Detail form tableadapter update error.. | 21 May 2007 16:24 GMT | 3 |
Dear group, I have an invoice entry form, which is a simple Master fields / Detail grid. The main summary information of the invoice are stored in one table in a dataset, which is bound using a BindingSource (InvoiceBindingSource). The
|
| DataBinding DataGridView with AutoGenerateColumns=false | 21 May 2007 04:25 GMT | 4 |
How do I use databinding with DataGridView.AutoGenerateColumns = false? I have a DataGridView with a BindingSource as it's DataSource. The BindingSource's DataSource is a typed DataTable in a typed DataSet. The BindingSource in question is not raising BindingCompletes when editing ...
|
| RowDataBound like event? | 18 May 2007 07:52 GMT | 1 |
In asp.net the GridView has a RowDataBound event - really handy. What event replaces this in the Forms DataGridView?
 Signature Regards,
|
| Databinding to a Lookup table | 15 May 2007 12:50 GMT | 5 |
I have an Access database with several tables. The table TblInterfaceEvents has several columns SaturdayPriority, SundayPriority, MondayPriority, etc., that are lookup values from the table TblPriorityTypes. I have a Form with several databound controls, amoung which are several
|
| BindingSource.Filter | 13 May 2007 04:18 GMT | 1 |
I am currently filtering my DataGridView control using the BindingSource.Filter. For some reason it only works for column names with no spaces i.e. BindingSource.Filter = "Description='Hello'";
|
| Sorting and Editing datagrid | 13 May 2007 01:18 GMT | 1 |
I'm using .NET 1.1. I have a datagrid on my form and is binded to a dataview of datatable. When the user changes the value in any cell and press Enter(or any key) to move to a different cell, then the entire row is calculated and displays the calculated values.
|
| Binding does not add new rows to dataset | 12 May 2007 02:01 GMT | 1 |
I'm having serious problems with a little winform app. I make a form to update/add/delete rows of a SQL 2005 database. Problem is that when I add a new record this is not added to the database. I explain: I click in the BindingNavigator button New, then i fill de textboxes,
|
| DataGridView Updates back to SQL Server | 09 May 2007 03:02 GMT | 2 |
I am trying to update changes from my datagridview back to SQL. The DGV is populated from a Stored Procedure. I declared a data table and adapter: [code]
|