Tagged Questions
BindingSource is a .NET class that encapsulates the data source of a Windows form.
10
votes
4answers
4k views
How do you get the proper mapping name from a binding source bound to a List<T>, or an anonymous type, to use on a DataGridTableStyle?
I'm trying to create a DataGridTableStyle object so that I can control the column widths of a DataGrid. I've created a BindingSource object bound to a List. Actually it's bound to an anonymous type ...
9
votes
2answers
726 views
When is it worth using a BindingSource?
I think I understand well enough what the BindingSource class does - i.e. provide a layer of indirection between a data source and a UI control. It implements the IBindingList interface and therefore ...
9
votes
4answers
2k views
Can my binding source tell me if a change has occurred?
I have a BindingSource that I'm using in winforms data binding and I'd like to have some sort of prompt for when the user attempts to close the form after they've made changes to the data. A sort of ...
6
votes
3answers
5k views
.NET BindingSource Filter syntax reference
you can use the Filter property of a BindingSource to do SQL like filtering.
for example
bindingSource.Filter= "Activated = 1"
but is there something like a documentation on the exact syntax of ...
6
votes
5answers
2k views
Using a BindingSource in a UserControl
I have a UserControl with multiple fields that I would like to have bound to a BindingSource. I would also like the UserControl to expose some BindingSource property so that it can be dropped on a ...
6
votes
5answers
4k views
Allow user to sort columns from a LINQ query in a DataGridView
I can't quite work out how to allow a DataGridView populated at runtime to sort (when users click on the column headers) where a LINQ from XML query is the DataSource, via a BindingSource.
Dim ...
5
votes
3answers
4k views
C# (Visual studio): Correlation between database, dataset, binding source
I am just learning C# through Visual Studio 2008?
I was wondering what exactly is the correlation between dabases, datasets and binding sources?
As well, what is the function of the table adapter?
4
votes
2answers
207 views
unbinding bindingsource
I am using a bindingsource in my windows forms application to populate some textboxes etc in my view. Binding works OK but how can I unsubscribe my bindingSource from from my object?
...
3
votes
2answers
1k views
Do I need a BindingSource AND a BindingList for WinForms DataBinding?
I want to display a list of people in a DataGridView in a Windows Forms app. I want my service layer to return a list of Person objects (e.g., IList<Person>). I want changes in the list to be ...
3
votes
2answers
1k views
Set DataContext of a textbox to the current class in silverlight
i have a textbox in a UserControl,
i created a property in the UserControl,
i want to bind the textbox text property to the property created in the usercontrol.
The problem is that i dont know how ...
3
votes
1answer
735 views
Problem with databinding manual writevalue in .net winforms
If I turn off automatic updating of a binding data source by setting DataSourceUpdateMode = Never and then use a button to update the whole lot (using binding.WriteValue), a problem occurs - Namely, ...
3
votes
1answer
2k views
Undoing All Changes Since BindingSource's last EndEdit call
Here's the scenario (which uses a BindingSource bound to a DataTable within a DataSet):
A user creates a new address book
contact, fills in the First and Last
name in data-bound controls.
He presses ...
3
votes
4answers
4k views
.NET BindingSource.Filter with regular expressions
i am using a BindingSource.Filter to list only certain elements of the datasource.
especially i use it like this a lot:
m_bindingSourceTAnimation.Filter = "Name LIKE '" + FilterText + "'";
now my ...
3
votes
1answer
1k views
InvalidOperationException on Databinding when removing last item in list
I'm getting the following message when I try to remove the last item in a datagridview.
DataBinding cannot find a row in the list that is suitable for all bindings.
I have my binding setup as ...
3
votes
3answers
2k views
Empty BindingSource problem
I have a problem with binding data using BindingSource, typed dataset and DataGridView. My problem is: BindingSource, therefore grid, is empty after binding data (bindingSource.Count is 0). I couldn't ...
3
votes
4answers
21k views
C# refreshing textbox from BindingSource
I am having difficulty refreshing windows forms controls that are using a BindingSource object. We have a CAB/MVP/SCSF client that I (actually “we” since it is a team effort) are developing that will ...
2
votes
3answers
163 views
How to properly commit bindingSource changes to source DB?
I setup DataGridView and other UI components to allow user to edit data from SQLite DB. But these changes (even they are properly shows in application) doesn't saves to DB. I have tried this code
...
2
votes
1answer
40 views
How to get the underlying object bound to a control?
Using WinForms and data bindings.
I have a form containing a BindingSource component and I have set the DataSource property from the designer to a class:
public class MyClass
{
public string ...
2
votes
1answer
89 views
BindingSource, BindingList, DataGridView and cross-thread access
I have a DataGridView with its source set to BindingSource, whose source is set to BindingList that cotains objects that implement INotifyPropertyChanged. The problem is, the logic that updates items ...
2
votes
2answers
69 views
DataBindings in C# , filter in one control affect on data in another control
I have a static list of data called Services. I also have two BindingSource objects and this list is bounded to both of them:
this.bindingSources1.DataSource = Instance.Services;
this.cbx1.DataSource ...
2
votes
1answer
225 views
Windows Form BindingSource to LinqToSql fails to apply the 'Filter' property
I'm building a Windows Forms application and on many of these forms I use a BindingSource that is linked to a LinqToSql object. I also have a DataGridView which uses the BindingSource. This works ...
2
votes
1answer
409 views
c# binding datagridview to datatable in form vs control
I have the following code:
DataGridView lGrid = new DataGridView();
BindingSource _bind = new BindingSource();
DataTable Table = new DataTable();
...
2
votes
1answer
281 views
How do I find which rows have been updated in the underlying Datatable on updating the Datagridview?
This is what I am trying to achieve :
1)DataTable populated using data from non database source
2)This table is bound to a DataGridView using BindingSource
3)The DataGridView is updated by the user, ...
2
votes
1answer
558 views
BindingSource.Find key comparison is case insensitive?
I'm using BindingSource.Find() to return to the user's position after refreshing a DataGridView. I use BindingSource.Find() and a RowID as the DataColumn I'm searching on. Unfortunately, Oracle can ...
2
votes
2answers
542 views
How to bind a List of a DataObject to a Grid with BindingSources?
In an assembly I created a class like the following:
[DataObject(true)]
public class A
{
public int Foo{get;set;}
[DataObjectMethod[DataObjectMethodType.Select)]
public static List<A> ...
2
votes
1answer
143 views
Help with Find() in the BindingSource
I use this to look for values in my DataGridView:
private void fndBtn_Click(object sender, EventArgs e)
{
BindingSource src = new BindingSource();
src.DataSource = ...
2
votes
3answers
2k views
Windows DataGridView BindingSource Index out of range exception
Scenario:
Basically i have a
System.Windows.Forms.DataGridView
A class that inherits BindingSource and IBindingList
A class that has 2 standard List as private properties
DataGridView dgv = new ...
2
votes
2answers
3k views
DataBinding of DataGridView and List<> with BindingSource
I'm trying to figure out how data binding with BindingSource is supposed to work
I want a DataGridView to be populated with the content of a List<> upon update of the list.
I can see the List ...
2
votes
4answers
5k views
Select newly added Row - DataGridView and BindingSource
I'm adding a new Row to a BindingSource that is Bound to a DataGridView
source.AddNew();
After this, use BindingSource to get the newly added row is return the next row in the DataGridView when its ...
2
votes
2answers
2k views
BindingSource Refresh
I have 2 classes i.e Customer-Order and Customer class
has a reference to a collection of Orders.
I use master detail bindingSources.
My problem is when i use the lazy load pattern
for orders my ...
1
vote
1answer
25 views
How to reformat/transform data query results before displaying them in DataGridView
I am using the DataGridView component to quickly and easily display read-only SQL query results to the user. I have it working as desired, but I have to wonder if I'm doing things the "right" way. ...
1
vote
1answer
104 views
How to enable on BindingNavigator the AddNewItem
I'm trying to bind the BindingNavigator to a BindingSource. It works very good, but the problem is the yellow plus icon is disabled. How can I make it enabled?
I created manually with code the ...
1
vote
1answer
89 views
Data Grid View cursor
My datagrid show a table from my sqlBd. I add a textBox for each column that for show each rows.
This is my code:
private void CustomerViewToolStripMenuItem_Click(object sender, EventArgs e)
{
...
1
vote
2answers
93 views
How to detect changes of bindingsource bound to entity?
I have a bindingsource which is bound to entity.
normBindingSource.DataSource =
dowacodbEntities.norms.OrderBy(o1 => o1.UsePurpose_id).ThenBy(o2 => o2.Quantity);
Then a bindingsource is ...
1
vote
2answers
327 views
Datagridview error System.IndexOutOfRangeException: Index 0 does not have a value
I am getting one error when I am trying to populate binding source. The exception is as follows;
System.IndexOutOfRangeException: Index 0 does not have a value.
at ...
1
vote
1answer
129 views
WPF Textbox binding to Numeric or DateTime fields/properties
I've seen many references of make a textbox only allow numeric entry... no problem, understand that. However, the typical binding is still to the "Text" (TextProperty dependency) of the Textbox which ...
1
vote
0answers
104 views
Get filtered result from BindingSource to table/dataset?
Im using a BindingSource connected to a DataGridView to filter the data shown...
I would like to know what is the best way to get the filtered result to some other thing than a GridView?
I ask this ...
1
vote
0answers
96 views
C#: BindingSource CancelEdit for all objects and there child objects from EF
Let's say i have two objects from EF with INotifyPropertyChanged.
Object1 has many Object2 and the BindingSource1 has many Object1.
If I change some Properties of BindingSource1.Current (Object1) ...
1
vote
1answer
129 views
Binding a DataGridView to a lazy LINQ query on a Dictionary
EDIT: I'm noticing that this happens specifically when I bind to a Dictionary, which is something I missed in my original post; I've updated the post.
If I set my BindingSource's datasource to a late ...
1
vote
2answers
288 views
.NET WinForms combobox bindingsource and databinding question
I created the following class to model a person:
namespace DataBindingTest
{
public enum colorEnum
{
Red,
Green,
Yellow,
Blue,
}
class Person
{
...
1
vote
2answers
64 views
Deserialize a BindingSource list without having two copies in memory?
My application's "document" is really just a BindingSource that has a List<>. Since you cannot directly serialize a BindingSource, when it comes time to save, I serialize the List<>.
When it ...
1
vote
1answer
137 views
GridView's RowsAdded event is not working
I have a GridView which contains columns Code, Experience, Salary, Bonus
Data for Code, Experience and Salary columns come from BindingSource and I need to calculate data for Bonus based on ...
1
vote
1answer
607 views
Filtering DataGridview using DataSet -> BindingSource, extra columns later added
For a WinForms VB.Net application, I use the Bindingsource's filtering capacity to filter data, which is seen in a DataGridview. The BindingSource is from a DataSet, created using the Designer, and ...
1
vote
2answers
317 views
BindingSource and DataGridView default current position
Does the BindingSource have an automatic default current position? I have an event handler on CurrentCellChanged event and it seems to be firing twice. I am programatically setting the starting ...
1
vote
1answer
464 views
BindingSource CurrentChanged/PositionChanged old item
Is there a way to get a notification before Current of a BindingSource changes in Windows Forms, including the old item?
I'd like to save the old element before navigating away. CurrentChanged and ...
1
vote
0answers
745 views
Can't refresh datagridview with bindingsource
Goal:
Once clicking on add or delete button, the datagridview should be refreshed with the latest data from document.
Problem:
The datagridview can't be refreshed
after making changes by ...
1
vote
2answers
377 views
Do we need BindingSource with Entity Framework 4.0?
Do we really need BindingSource to bind to controls? I.e. what problems does it solve?
Do you use the BindingSource, or do you use an alternative method?
1
vote
3answers
1k views
Filter BindingSource with entity framework
Hi
How can i filter results exists in BindingSource filled with entities ( using EF 4)?
I tried this:
mybindingsource.Filter = "cityID = 1"
But it seems that binding source with entity framework ...
1
vote
1answer
376 views
.Net Filter BindingSource
If I filter a BindingSource's column like this: "column1 LIKE '%John%'", then all rows containing John on that column will return.
How to return all rows for which column1 contains [some ...
1
vote
1answer
377 views
C#: Pushing changes from DataGridView to BindingList back to database?
I'm using a BindingList to display a list of Person objects in a DataGridView in a Windows Forms application. Changes to the DataGridView change the underlying BindingList. I've got this part ...