I want to pass the focus of a user control to the called object (from where the focus has come to the user control). How do I do it.
Printable View
I want to pass the focus of a user control to the called object (from where the focus has come to the user control). How do I do it.
If the control that you are sending the focus to has a enable property set it. (txtMyText.enable = true)
sometimes you need to preface this code with txtMyText.focus = true.
sometimes the .value property of other controls are set a value.
Hope this helps
Later,
Glen