| Thread | Last Post | Replies |
|
| Binding to a related column | 29 Jan 2005 23:43 GMT | 3 |
I have a strongly typed dataset with tables: Users: ID, First Name, LastName Orders: ID, Quantity, UserID UserID is related to Users' ID column via a DataRelation.
|
| Databinding with Listbox control | 28 Jan 2005 16:36 GMT | 2 |
What is the easiest way to bind a dataset to a listbox control and assign the selectedValue & selectedText to the fields associated with my dataset. Any ideas or examples? i.e.:
|
| Trapping Datagrid Error Message | 27 Jan 2005 02:36 GMT | 3 |
BlankI have a WinForm app that uses a datagrid which is bound to a .Net dataset. After data is entered incorrectly into one of the datagrid cells and the update button on the form is selected, I get an embedded message box displaying the error, e.g. "Error when committing row to ...
|
| Deep databinding - constructing datagrid on the fly | 26 Jan 2005 14:12 GMT | 1 |
I would like to bind the following data structure to a datagrid: List of RowObjects = DataSource | |*
|
| databinding arraylist | 24 Jan 2005 18:49 GMT | 5 |
perhaps someone could help a newbie with his big problem. i have an arraylist with objects (class i made with two properties). and i'd like to bind it to a datagrid. there are 3 buttons on the form which should works as add, edit and delete. the problem i have
|
| DataReader to DataGrid (WinForm app) | 22 Jan 2005 13:21 GMT | 1 |
Is there really a way of binding a DataReader to a Datagrid in a Windows Forms Application?.I know that in ASP.NET ,you just simply set the datasource and call DataBind() method. Thanks
|
| TextBox Binding | 21 Jan 2005 17:54 GMT | 2 |
I set the Text Property of a databound textbox programatically but the value is not getting transferred to the underlying dataset. Is there is a way to force databinding to kick-in ? please...
|
| Synchronizing DataGrid and other controls - ie Textbox. | 21 Jan 2005 01:46 GMT | 3 |
I have a problem synchronizing a DataGrid with my other form controls, ie textboxes, using the VS 2003 IDE. I have a typed DataSet based on Customers in Northwind. I drop my DataSet component on the form. I then connect my DataGrid to the DataSet (in Design). In code I fill the ...
|
| Refresh Text Box | 20 Jan 2005 17:31 GMT | 1 |
I know this has been discussed (and answered) in other threads, but I'm still not getting the functionality I need. My app is a C# Windows App, with a MS Access DB. My app communicates using TCP/IP to a black box we are developing.
|
| How do I determine if text fits in my label or not? | 19 Jan 2005 18:22 GMT | 1 |
I have a label on a small form. I need to determine if the text in the label fits in the label. My end goal is to reduce the font size of the text in the label until it fits. How can I do this via code?
|
| DataSet still accepts invalid Date after Cancel during TextBox Validating | 19 Jan 2005 05:49 GMT | 6 |
Using VB.NET, I have a TextBox bound to a Dataset's DateTime Column. I've added Parse and Format handlers to the binding, and have added code to the TextBox Validating Event. During validating, the Date entered is checked for its Year and, if too old, e.Cancel is set to True. ...
|
| Change notifications and combo box | 18 Jan 2005 09:37 GMT | 3 |
Hi. I am binding a collection of objects to a combo box and have set the DisplayMember to a property of the child objects. This is working fine. However if the property is changed in code the text in the combo box is not updated to reflect the change. I have added a property ...
|
| Binding enum to ComboBox | 18 Jan 2005 06:45 GMT | 5 |
Hi. I have a type that I am binding to a form. One of the properties is an enum and I want the user to be able to select the value from a ComboBox. I am trying to do this using inbuilt data binding rather than coding up the plumbing to change the property value myself. Basically, ...
|
| Is this normal? | 17 Jan 2005 11:45 GMT | 2 |
I have some simple dataentry screens, textboxes are bound into a datasource. I connect to Sql Server 2000. When the user wants to add a new record, I call "AddNew()" method of bindingcontext but it gives me an error saying "CustomerId cannot be null value". This field is int and ...
|
| DataGridView - save to DB on row change? | 14 Jan 2005 21:37 GMT | 1 |
I am using a DataGridView control in a very simple Windows Forms form. The DataGridView is bound in the new-fangled way. That is, I used a DataSource component and the DataGridView is databound using a typed DataSet, DataConnector, Navigator, and TableAdapter.
|