Tagged Questions
The currencymanager tag has no wiki summary.
1
vote
2answers
886 views
Display new form based on GridView data
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 ...
1
vote
3answers
2k views
C# Binding: How can I disable the CurrencyManager in BindingList so Current Item position is not maintained and not signaled?
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 ...
0
votes
3answers
172 views
Control binding with CurrencyManager without BindingSource
I decided not to use bindingSource class but implement binding functionality on my windows form application. I succeed to some points but little complication occurs. I would like to find out the ...
0
votes
1answer
40 views
Fetch thrown and swallowed Exception from CurrencyManager
The .NET Windows Forms CurrencyManager swallows exceptions that are thrown while navigating (see "Bug in CurrencyManager.OnPositionChanged - eats exceptions" on MSDN Social).
I, however, need to ...
0
votes
1answer
366 views
Binding DataGridView to DataSource - Throws CurrencyError IndexOutOfRangeException
I've been puzzling over this one for a few days now and it's got me pretty beaten, but to be honest I'm not all that experienced yet and I'm having trouble with DataGridView - which seems a common ...
0
votes
1answer
590 views
Update CurrencyManager Position
I have a ContextMenuStrip that is used on a DataGridView, the DataGridView is inside of a SplitContainer panel. My users have requested that they be able to right click on any of the rows in the grid ...
0
votes
1answer
399 views
How to prevent CurrencyManager from calling BeginEdit()/EndEdit() methods for bound objects
I've got a form with several textboxes and one datagrid. One business entity can be bound to this form. For example, BO looks like this:
class BO : IEditableObject, INotifyPropertyChanged
{
public ...
0
votes
0answers
285 views
BindingSource's CurrencyManager holding a reference to the DataMember of it's DataSource
I have an object Person, which contains a property, Emails, which is a list of Email addresses.
I have created a binding source for this person, so that I can bind their email addresses to a ...