0
votes
1answer
30 views
BindingSource.Find Multiple Columns
Is it possible to use the Find method of a BindingSource on multiple columns?
For example, say I have a gridview displaying current pets; two comboboxes, cboPetType and cboGende …
0
votes
0answers
11 views
how to create a master detail insert form
i'm using the Northwind database and I want to create a C# .Net Framework windows form to generate an order input.
I already linked the tables in my dataset and the binding source …
0
votes
3answers
133 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 D …
0
votes
1answer
39 views
Re-order records in gridview/bindingsource
I am using Telerik's WinForms controls and have a radGridView which is bound to a bindingsource to display my data. I would like to expand on the functionality of this a bit to gi …
0
votes
1answer
112 views
BindingSource sees changes, DataTable doesn’t
I have recently switched over from Java/RMI to C# / .net, and am working on my first project using databinding to update records in Oracle. On this first form I'm building, I have …
0
votes
0answers
14 views
Wpf Binding tow binding on the same Dependency property
i have a control the have a property called "SelectedItems"
my control bind SelectedItems to an innerDataSource.
the control user bind this property to his model view
how do …
0
votes
4answers
117 views
Refreshing BindingSource after insert (Linq To SQL)
I have a grid bound to a BindingSource which is bound to DataContext table, like this:
myBindingSource.DataSource = myDataContext.MyTable;
myGrid.DataSource = myBindingSource;
I …
0
votes
0answers
45 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 proble …
1
vote
1answer
193 views
C# WinForms BindingList & DataGridView - disallowing EDIT prevents creation of a NEW row? How can I address this?
Hi,
Regarding my use of a DataGridView with BindingList, I was to disable editing current rows, but allow adding new rows. The issue I have is that when I disallows edits, this s …
0
votes
1answer
26 views
PropertyChanged Event, raise when OnClick???
Hi,
I have a WinForms application with some business objects which implement INotifyPropertyChanged and hook the PropertyChanged event via some controls & BindingSource on the …
0
votes
0answers
218 views
C# how to apply filter to dataGridView with a dataMember declared on its bindingSource
Hi, I'm having some issue getting a row filter on my dataGridView because the DataMember of the dataGridView is itself a member of the larger bindingSource List object that I am us …
1
vote
3answers
317 views
.NET BindingSource Filter syntax reference
Hello, 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 …
0
votes
1answer
100 views
Datagridview with sorted EntitySet<T>? (.NET 3.5)
I'm hoping there's a simple answer to this one I've missed in hours of Googling...
I have a DataGridView which needs to display and add/delete/edit records from a database. I'm u …
0
votes
0answers
146 views
Programmatically add row to entity data model context and have new row show up in databound datagridview
I have a datagridview that is bound to a bindingsource which is in turn bound to the an EDM object. I'm importing objects from a CSV file and wish to add these objects to the EDM …
1
vote
1answer
105 views
Synchronizing two BindingSources
I have a form with a DataGridView that opens a details form on a double click.
When opening the second form I set it to use the same DataSet instance as the parent form. i now want …
