I'm using the Forms.Controls.Find Method to search the child controls of a parent control. The method has 2 arguments; (Key, SearchAllChildren). I know that the Key argument does a string comparison on the child controls' names and fills the return array with the controls that have a matching name. However, I do not know the significance of the SearchAllChildren argument.
The MSDN documentation says: true to search all child controls; otherwise, false. What does this mean? Won't it search all the child controls anyways? Is this to control whether the search is recursive? So if it's true then the search will go through the children of all the children and all the children of the children of the chilren and etc., but if false then it will only go through the first level of children?
Thanks,