what I could like to do is whenever the single record detailview is moved to a different record corresponding to the datasource,set a few unbound checkboxes using values from a couple of disabled and bound texbox control
I was looking at using bindingmanager but I lack the required understanding and could not get hold the ofbinding manager
I can catch the state change on the checkboxes easily to update teh boudn textboes accordingly.I will disable such action during processing for programtically setting the checkboxes. No problem there
I would like some help preferrably a smple code snippet in C#, even vb.
Let say the one of the two bound controlsis regexcOptionTextBox
how doI connect the binding manager positon changed to the test event BindingManagerBase_CurrentChanged ?
private bIgnoreChkboxState = false;
private void BindingManagerBase_CurrentChanged(Object sender, EventArgs e )
{
bIgnoreChkboxState = true;
addMsg("@test position Changed");
// .... processing for changing unbound checkboxes....
bIgnoreChkboxState = false;
}