| Thread | Last Post | Replies |
|
| BMB.CurrentChanged gets fired just once or twice?! | 30 Oct 2006 18:40 GMT | 1 |
I have installed a hanlder for this event: this.BindingContext[dataSetCurriculumsCourses, "TableInstitutes"].CurrentChanged ....
|
| Default value of a GUID field?! | 30 Oct 2006 18:01 GMT | 5 |
I have a column named "ID" and its type is "uniqueidentifier" in SQL Server 2005 Express. this column is the primary key and its default value is "newid()" in SQL Server.
|
| What event can I use on a binding action? | 30 Oct 2006 18:01 GMT | 2 |
I've got a comboBox bound to an object in my code. Is there an event I can hook when the object is updated? I can break on the "set mydata = value;" but I'm not clever enough to know what event triggered that call.
|
| how to control Delete Method? | 29 Oct 2006 16:32 GMT | 2 |
I have 2 tables Products (ProductID,ProductName, Del) and Sale(id, productID, qty, price) Del setted to 1 if user deletes this product. I have DataGridView and a BindingNavigator which binds to this table.
|
| How do I change a value of a DataTable cell in a DataSet? (C#) | 29 Oct 2006 08:50 GMT | 3 |
as a beginner I've encountered a problem while trying to change a value inside the DataSet. After I call dataSet.Tables["tbl"].Rows[0].ItemArray.SetValue("something", colIdx); the value in the row 0 and column colIdx of the DataTable "tbl" doesn't get changed.
|
| Is there a better way to bind a listbox (combBox)? | 29 Oct 2006 03:10 GMT | 2 |
I'd like to bind a combo box control to an object. i.e. bind an index number for an array of display strings to my data object. I've got something that works as far as I've tested it, but it has to be an overly convoluted method.
|
| How can I bind a control to an object declared at run time? | 28 Oct 2006 18:49 GMT | 4 |
I'm so lost. This has to be the 20th attempt at writing this posting. * I have a form with various controls. * I have an object with associated properties
|
| BindingSource and RaiseListChangedEvents | 28 Oct 2006 12:20 GMT | 1 |
I'm trying to bind my winform controls to a BindingSource instead of a DataView and I'm setting the DataView as the BindingSource's DataSource property. My main reason for binding to the Bindingsource instead of the DataView
|
| Binding a textbox to a nullable datatype. | 27 Oct 2006 03:04 GMT | 4 |
I am wondering if there is a better solution, than the one I came up with... I am binding a textbox to a nullable float (float?) and want the ability for the user to leave the textbox blank, indicating that it is
|
| Determining which object has been removed from a BindingList | 26 Oct 2006 21:55 GMT | 1 |
I have a class that inherits from BindingList<T>. It raises the ListChanged event. When an object is removed from the list, how do I figure out which object was removed? ListChanged e.NewIndex points to the object that is now in the
|
| BindingSource.AddNew() locks TextBox.Text property?? | 26 Oct 2006 21:28 GMT | 6 |
I have simple databinding of textbox to bindingsource(bound to dataset), created in form constructor: public Form3(string xyz) {
|
| ComboBox - Losing binding | 26 Oct 2006 21:25 GMT | 1 |
Hey Guys&Gals my combo box is never empty it always have the text from the first member of the table... Plz help my code:
|
| Binding a DataSet with multiple takes to a BindingNavigator | 26 Oct 2006 21:24 GMT | 1 |
I have a DataSet, let's say with two tables: one for jobs, one for employees. I want to do something like this: BindingSource bs = new BindingSource(); bs.DataSource = ds;
|
| Master/Detail Relationship | 25 Oct 2006 09:26 GMT | 3 |
I have a dataset (dsIntake) in the designer with a master/detail relation. The relation is marked with Relation Only and Nested Relation In the designer code it is: this.relationIntakes_vwIntakeRelatedCases = new
|
| bound combobox default value | 23 Oct 2006 06:54 GMT | 4 |
I have a combobox (DropDownList style) that I filled with objects that have two properites Display and Value. The combobox is bound to a binding source this.cbxStaff.DataBindings.Add("SelectedValue", this.intakesBindingSource,
|