I got bored with when I have a table I have to first select the cell I want to update, then select the TextBox the update value goes in. So I tried adding MyTextBox.Focus to the table's SelectionChanged event handler, with the intention of saving the extra click or tap. Sadly, this seemed to be ignored. Checking with the Help file, I found that the method "will try" to move the focus to control. Taking that literally, it implies that in some circumstances the attempt will fail. Is there any rule of thumb as to where this method works and where it doesn't? (Just in case there may be some bodge I could dream up
)