currencymanager

C# Binding: How can I disable the CurrencyManager in BindingList so Current Item position is not maintained and not signaled?

Hi, I've got two ListBox'es that are databound to the same BindingList. The issue is that when changing the selected item from the GUI it's changing the position in the BindingList and then the BindingList signals the other ListBox to change its selected item. So I've got the two ListBoxes Selected Item also synchronized which is not ...

Display new form based on GridView data

Hi All, I have a GridView, radGvA133s, on my main form, MainForm. I would like to be able to double-click on a row of the GridView and have that open up a new form, A133Form, to allow editing of the selected row. Here is the double-click code: private void radGvA133s_DoubleClick(object sender, EventArgs e) { A133 oA13...

Problem using Binding Source with Relations in C#

Hi All, I am creating a C# winform in DOt Net 3.5, I have a datagridview control & a few Other Controls (2 Textbox). In my DataSet there are two tables MasterParent(Code) ,MasterDetail(ParentCode). Both are related by a FkRelation. Code is an AutoIncrementing Column. I Create a binding source (b1) & set Mastertable as a DataSource to i...

Locate row in DataGridView when bound DataView sorted by different column in .NET

I have a DataGridView with a DataTable set to its DataSource. The DataTable has two columns. The user has a TextBox which dynamically (after each keypress) searches for a match in the first column. I want to jump to the matching record (if any) after each key entry, so it needs to be fast. I use the Find() method on the DefaultView of ...