| Thread | Last Post | Replies |
|
| HELP: Insert a row? (Strange Behavior on DataTable.Rows.Insert ) | 30 Jan 2006 15:50 GMT | 3 |
I have a datagrid for which I need to allow users to insert rows upon pressing insert. The datagrid is nothing fancy beyond having a special calculated value column for line number (And I only fire that event after a row addition, insertion, or deletion) and some other
|
| Combo bound to a related table loses binding upon delete. | 30 Jan 2006 11:11 GMT | 22 |
I have an application working quite happily until I attempt to delete a row from a datagrid. I have a datagrid that is bound to a table with book details. In my UI I also have various controls that allow you to edit the row being
|
| DataView - RowFilter: Wrong Values | 29 Jan 2006 18:52 GMT | 4 |
I have a little problem in my app with DataView and I'm unable to find a solution myself. I couldn't find anything on msdn or google, so I really hope someone can explain. My app consists partly of databound controls and partly of controls I
|
| Make Simple Binding to Control/Class Property Two-way? | 27 Jan 2006 15:30 GMT | 2 |
We're using C# in VS 2005. We've successfully bound a DataGridView to a collection of Widget objects using the generic BindingList<Widget>, and the binding is 2-way. I also understand we could have used another collection
|
| problem with deleting from dataset | 27 Jan 2006 14:19 GMT | 3 |
I have datalist, which dataosurce it is to dataset table, user by bindingsource control I am filling dataset with table adapter. I want delete from dataset table the row, which I am selected in datalist.
|
| databinding and updating sample | 27 Jan 2006 09:44 GMT | 3 |
I need some sample code showing how to manipulate data in my access database using C#. This is what Im trying to do: Dropdownlist with datagrid both bound to datasource. When the drop down list value changes - the datagrid values change accordingly. I managed to get
|
| Problem with Databinding TextBox Visible=False | 25 Jan 2006 12:59 GMT | 2 |
I need assign information in a textbox with Visible=False, this control has binding with a typed dataset. When I save, the value of the control is null and if I change Visible=True, works fine. What happened here? I don't know what I can do.
|
| DataGridView - Select Row based on ID column | 24 Jan 2006 23:53 GMT | 2 |
This should be easy! I have a DataGridView and I want to select the row where the QuestionID (Column1) = 5 What is the code to do this???
|
| Newbie Binding TextBox to Database | 23 Jan 2006 13:43 GMT | 2 |
I initailly assumed a bound textbox to be one that looks after updating a data source on its own (similar to MS access bound forms, drag it on the form and off it goes). How wrong I seem to have been. In VS2005 seems a bit more complicated than that, DataSets, DataAdapters
|
| Databinding combobox to enum. | 22 Jan 2006 21:34 GMT | 5 |
Can someone tell me whether I'm missing something really obvious here or not I have the following dummy class class eclass {
|
| Can you bind a comboBox in the navigation panel? | 22 Jan 2006 12:52 GMT | 1 |
I have tried with this code, but, unsuccessfully. this.tscboName.ComboBox.DataSource = this.instructorsBindingSource; this.tscboName.ComboBox.DataBindings.Add("DisplayMember", this.instructorsBindingSource, "InstructorName");
|
| Error with datagridview and bindingnavigator with typed dataset | 20 Jan 2006 12:26 GMT | 4 |
I maked a project with a Master and Child Table. with datagridview and bindingnavigator control. The problem is: When I click a deleteitem button and after click the save button, I have the
|
| DataBinding textbox to datatable | 19 Jan 2006 20:45 GMT | 1 |
I am struggling with a databinding issue. Essentially, i have a bunch of text boxes that are I have bided to the currentrecord of a datable. I initially use beginedit on the row when loading the form. My issue is that when i programatically change the value of that column of the
|
| lazy load DataGridView - is there a Navigation event? | 19 Jan 2006 12:12 GMT | 1 |
I would like to lazy load a datagridview - on a datarow, when they click on the expand + symbol, is there a way to catch that event? that way, I can fill the datarows in the related table. Thanks,
|
| bound combo box not displaying correct record when first loading | 18 Jan 2006 21:20 GMT | 4 |
I have a combo box and have it bound to my 2 recordsets. This is working well, BUT when I open the form the combo box does not display the correct corresponding record (from the lookup recordset). ie. the comboboxes record CustomerRegionID=2 and my lookup table contains
|