| Thread | Last Post | Replies |
|
| Help not changing position on datasource. | 22 Jul 2008 01:04 GMT | 1 |
I have a four row table that I have built a select index off. I have an on change even that is supposed to change the position of the binding source that all fields on the screen are tied to: position = DB.tblMatchBindingSource.Find("ID", select.Id);
|
| Code works in form constructor but fails to relocate elsewhere | 11 Jul 2008 08:28 GMT | 4 |
For a form that has two DataGridView controls, I find following piece of code (free of bindingsource, binding navigator, typed dataset etc enhancements) conceptually a simple and effective way to display parent-child relationship. The two grids are synchronized (selecting record
|
| Part-2: Code works in form constructor but fails to relocate elsewhere | 11 Jul 2008 08:23 GMT | 2 |
Not that I am obssessed with running code in the constructor but I am unable to make this following piece of simple code run anywhere other than the form constructor. While this code completes (for total 91 customer records in Customers table) in about 5 secs in the form constructor ...
|
| Help - Access table not updating | 07 Jul 2008 16:03 GMT | 1 |
I have posted this on C# group but got no response. First time application with databases. I am missing the point where it actually updates the database table. I am only updating a single table, this more or less directly from 'how to: save changes from a dataset to a
|
| Newly added Row fails to update | 01 Jul 2008 19:56 GMT | 3 |
I have a windows form with a Dataset with only one table bound to Details View controls, all created in VS2005 with designer. I added a button to create a new record and issue a this.mBDetailsBindingSource.AddNew(); to create a new blank row in the table and then fill the ...
|
| display bit cols as "true"/"false" | 01 Jul 2008 08:10 GMT | 1 |
When binding a DataTable to a DataGridView , if the DataTable has a non-nullable bit column ( 0 , 1 ) , is it possible to have 0 displayed as "false" and 1 as "true" ? NOTE: I need to keep the
|