This really should be obvious, but its not. I have a grid on a form and when i change rows, I want the text boxes and other form controls to stay synchronized. Here is the code:
{
boNotes.SeekToPrimaryKey(
}
The Notes BO is on the corrrect row, because if I click the edit button in the form, the controls all get updated with the correct values.
What do I need to do to handle this programmatically?
Thanks!
I think you shold use navigate instead of seek on your bo. This will update any bound controls.
/Teddy
That was it - thanks a million. I knew it had to be something simple