Hello Randy,I do the following to syncronize a few textboxes (on a tabpage, bound to BO boOmnibus) with a datagridview:
private void dataGridViewOmnibus_RowHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e)
{
//Synchronizing the tabPageDetails with the dataGridViewOmnibus
boOmnibus.Navigate(MicroFour.StrataFrame.Business.BusinessNavigationDirection.Absolute, this.dataGridViewOmnibus.CurrentRow.Index);
}
HTH, Ralph