| Thread | Last Post | Replies |
|
| Binding to a property in a User Control | 10 Nov 2004 04:46 GMT | 3 |
I have a custom control derived from TextBox (could be any control though) with a property that I want to bind a database row to. E.g. public class TestTextBox : System.Windows.Forms.TextBox {
|
| DataRowView binding | 09 Nov 2004 09:30 GMT | 1 |
I have a form that shows the values of a DataRowView. I bind the controls to columns of this DataRowView. Almost everything works right, but, there is something that doesn't work as I expected:
|
| With Relationships and filter | 09 Nov 2004 09:28 GMT | 1 |
Hello, I'm trying to bind table Employee already on a dataset DsName. But Employee references to other tables PersonnelGroup and PersonnelStatus. I want cbobox cboName only to show Employees whose Status = 'Current' and Group = 'ATBDE'
|
| Databinding Wishlist | 06 Nov 2004 17:03 GMT | 1 |
Rather than complaining to myself about this I thought I should put it out there and see if others agree with me (or can point out ways it can already be done). Two things I would love to see data binding support are:
|
| Textbox and DataRow Status Problem | 06 Nov 2004 05:10 GMT | 1 |
Hi DotNetterians ! I have come across a behavior of the databinding functionality that I cannot understand. I have a simple Windows Form with a textbox an a programmatically created
|
| Sorting of DataTable | 05 Nov 2004 09:19 GMT | 2 |
When sorting a DataTable with DataTable.DefaultView.Sort then the table seems to be sorted when looking at with a DataGrid, however when using the table in the code through DataTable.Rows[] the rows are not sorted. Is there a way to access the DataTable in the code with its rows ...
|
| Datagrid individual cell colors | 04 Nov 2004 13:26 GMT | 2 |
I have a datagrid in a windows form I want to show some customized format, like background color, etc for some cells depending on the value of the cell or other cells of the row, etc I have derived from the DataGridTextBoxColumn object
|
| Datagrid Combobox column datasource problem | 04 Nov 2004 10:42 GMT | 1 |
I am trying to set the datasource for a Combobox column of a Datagrid to a relationship of a Datatable: this.GoodsColumn.ColumnComboBox.DataSource = voyageDataset1.tblConsignment.DefaultView;
|
| When does setting the Position of a BindingManager not work? | 03 Nov 2004 12:07 GMT | 4 |
I have a situation in which some in a DataSet that is bound to a (non-MS) grid and into individual controls. The grid is readonly and used for navigation only. When a row in the grid is selected I set the Position property of the form's BindingManagerBase (from Me.BindingContext) to ...
|
| Simple databinding problem | 03 Nov 2004 11:21 GMT | 5 |
I have a texbox bound to a property in a custom data object. When I edit the textbox directly the data object is updated, but only when I leave the textbox. However if I change the textbox's text programatically the data object is
|
| Notify binding on changed data (ICustomTypeDescriptor and PropertyDescriptor) | 03 Nov 2004 11:14 GMT | 1 |
Good morning, happy haloween Explainations: I have a collection (that implements arraylist) of custom objects (lets call them A)
|
| Exception in property in Windows Forms DataBinding | 03 Nov 2004 10:55 GMT | 6 |
I have a problem with exceptions in data binding. I have a normal windows form with 2 fields on which binds to an Custom List which inherits from CollectionBase and imlements IBindingList and IEditableObject.
|
| Databinding array as property to datagrid | 03 Nov 2004 10:41 GMT | 1 |
i have a class(lets say class "a" ) that one of its members is array (not array list) of class "b" (the other members are simple like int,string ect..). when i binding class a to datagrid all the simple members are ok, but the
|
| Databinding two controls together - works? | 03 Nov 2004 08:28 GMT | 5 |
Why doesn't this work? Very simple code... nvl.BindableList is an ArrayList of "NameValue" objects Name and Value are object properties of the NameValue objects cbxDesType is a combo-box
|
| Stored Procedure executed with datagrid | 02 Nov 2004 00:58 GMT | 6 |
I have a datagrid that has a checkbox... when a checkboxes are clicked, i am updating the records that are checked... This is what i have so far.... but i am geting an error.... where the OrderID is not being passed from the datagrid "dgOrders" to the stored
|