| Thread | Last Post | Replies |
|
| Databinding on a custom property not working properly | 30 Sep 2005 22:09 GMT | 4 |
I have a form with a custom property called 'KamerID'. This property is bound to a column (KAMERID) in a datatable (ABONNEES) in a dataset (dsAbo). The property is bound at runtime: this.DataBindings.Add("KamerID", dsAbo, "ABONNEES.KAMERID");
|
| Obtain CurrencyManager from class implementing IBindingList | 27 Sep 2005 18:25 GMT | 1 |
My datasource is a collection that implements IBindingList. I am binding to a datagrid, and need to get the currency manager from the datasource, so I
|
| Checkbox databinding issue on descendant control | 26 Sep 2005 08:14 GMT | 6 |
Hi, I have a checkbox that I have added to a descendant user control. I am binding the checkbox to the dataset on the ancestor control. Any changes made to the checkbox is not being picked up in my update. No error is thrown. I ran through the debugger and compared the ...
|
| Deleting from a Dataview | 24 Sep 2005 04:33 GMT | 2 |
Is there any way to delete the current row of a dataview? I can't seem to find any properties or methods that give me the current row to delete. I know I can do a Find(), but I need to do that off of a key value of the CURRENT row! Am I missing something?
|
| Deleting the current row of a Dataview | 24 Sep 2005 04:23 GMT | 2 |
Is there anyway to delete the current row of a Dataview? I can't seem to find any property or method that tells me which row is currently selected. Thanks to all who respond! Jeff Tolman
|
| Refreshing a dataview source to a datagrid | 23 Sep 2005 19:18 GMT | 4 |
I have a table that I've built by saying something like "SELECT * FROM Manifest_Details WHERE [manifest_id] = @manifest_id". I can pull up the information into a dataset/datatable nicely, and then I build a DataView off of the table and set it as the DataSource for my DataGrid.
|
| Problem in selecting row after sorting in datagrid... | 23 Sep 2005 17:49 GMT | 4 |
I have one specific question for DataGrid In the Form Load event of the Form, I am binding data with DataGrid. On clicking Row the CurrentRowIndex is updated and it gives me correct rowindex.
|
| Databinding textboxes to filtered datagrid | 22 Sep 2005 01:30 GMT | 1 |
I have a form with a datagrid (dgCustomers) on it. The datagrid has - as Datasource: myDataset - as DataMember: tblCustomers
|
| ERROR: Cannot create child list | 22 Sep 2005 00:39 GMT | 2 |
I am coming across a very strange problem where can't seem to bind my datatable to my datagrid. I have two datagrids, where the first is having no problem binding to a datatable. However, my second datagrid keeps getting a "Cannot create child list for field 'Table'". Does ...
|
| Field not being saved to DB even when bound textbox shows changed data | 21 Sep 2005 10:33 GMT | 2 |
I have a form with a single textbox control which is bound to a DataRelation in a typed dataset. The textbox displays the name of the product depending on the language selected from a combobox. When you select a different language, the textbox must show the name of the
|
| Databinding Error on Tab Control | 20 Sep 2005 02:58 GMT | 1 |
I have several controls on a tab control contained in a User Control (which I call the tabPanel). sample code: public class TabPanel: System.Windows.Forms.UserControl
|
| Bound textbox that is invisible | 19 Sep 2005 13:23 GMT | 3 |
I have a bound textbox that I'm setting programmatically. It updates the dataset and database if the textbox is visible but not if I set visible to false. Can this be done with a dataset or do I have to set the database field directly.
|
| Unable to Bind to Visual FoxPro table! | 19 Sep 2005 01:32 GMT | 3 |
I am unable to bind my datagrid and dataset/datatable that was retrieved using the VFPOLEDB.dll database interface. I keep getting a "Cannot create a child list for field Table". Does anyone have any ideas about what's going on here?
|
| Databinding in VS 2005 Beta 2 on datagridview control | 15 Sep 2005 08:31 GMT | 4 |
Hi, I am setting up DataSource and DataMember of datagridview control to some table in dataset. Once I insert new record, I update this information to database and accept changes. Problem is that since I am generating primary key for this table in Oracle, my datagridview has ...
|
| BindingSource events question | 08 Sep 2005 00:18 GMT | 1 |
I have a BindingSource object binded to several TextBoxes. Is there an event that fires as soon as I start typing inside a textbox, effectively changing its content? I need one to create a property that identifies if my derived BindingSource is on "Edit" or "Append" mode (the ...
|