I have the user go off to a new form. The user will then click on either of two buttons (Yes or No) to close that form and return to the mother form. If the user clicks Yes, I would like to automatically click one of the buttons on the mother form. Haven’t had any luck yet.
Thanks
Got it!
In the daughter Close Event I added a line to fire off the Method on the Mother screen that performs the actions of the Mother button I wanted to hit.
Don’t try to automate a button click on the parent form. You put the code that the button would perform into a method which you then call.
The attached sample project might help.
Thanks
I’ll look it over